Project Assessmen: How to ETL twitter information.¶

                                                                                      Create 2022-5-1 
                                                                                      Author Rocky_Lee

1. About the Program¶

    1.Overall Goal
       -   Specify a Twitter user and crawl all of that user's tweets.
       -   Data cleansing, filtering out worthless information from your Twitter feed
       -   Specify keywords to filter twitter content
       -   Design the database and save the relevant data

    2.How to use the program?
       -   set some specify keywords on python
       -   use Python capture data
       -   use PgSQL command or Python load the data and analysis
       -   Edit ER-D
       -   SQLit3 run for python, PgSQL show for data visualization 

2.About the Program tools: Install and Setup¶

    - python: https://www.python.org
    +- configparser:pip install configparser
    +- tweepy:pip install tweepy
    - SQLite3:https://www.sqlite.org/index.html
    +- sqlalchemy:pip install sqlalchemy
    +- pandas:pip install pandas

3.Input the variable : Global¶

    set 1: Open and Run the Python Program.
    set 2: In terminal define the necessary parameters.
In [ ]:
print('Define the necessary parmeters: ')
user = (input('  Please enter your target\'s Twitter ID: '))
print('\n')
print('If you want to get the maximum, just click "Enter/Return" only: ')
page = (input('  please enter how many recode is your want to get: '))

4.Call and Run key.ini File¶

Please make sure you have the developer account key
More detailed: https://developer.twitter.com/en
In [2]:
import configparser

#read configs
'''
In this INI file, all keys for logging in to the API are saved.
The beta version will use the developer key.
If you need to define keys, please contact your developer or Twitter.
    More detailed: https://developer.twitter.com/en
'''
config = configparser.ConfigParser()
config.read('config.ini')
api_key = config['twitter']['api_key']
api_key_secret = config['twitter']['api_key_secret']
access_token = config['twitter']['access_token']
access_token_secret = config['twitter']['access_token_secret']

5.Call tweepy and login Twitter API¶

About more API detailed:https://developer.twitter.com/en/search-results?limit=10&offset=0&q=api&searchPath=%2Fcontent%2Fdeveloper-twitter%2Fen&sort=relevance
- Login V1.0 Free without limit
- Login V2: Limited use and capped free

About how to choose the tools from tweepy, Please read the Tweepy.DOC
https://docs.tweepy.org/en/stable/

Since our goal and for exam i will choose user_timeline(): For Example
In [3]:
import tweepy

'''
    when you want to call the V1 API, just call the 'api' 
'''

#login V1 and set the api:
auth = tweepy.OAuthHandler(api_key, api_key_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
#login V2 and set the client:
client = tweepy.Client(consumer_key = api_key,
                       consumer_secret = api_key_secret,
                       access_token = access_token,
                       access_token_secret = access_token_secret)

6.ETL --> E¶

In [7]:
import json
#import tweepy  --part.5 We imported the python library.
'''
Call the tweepy.api.user_timeline() get the user infomation from twitter.
    line 10 --> pages(x), text x you can input any int, for get a number pages infomation.
    For all about info, we use append save in data(class list)
    For each data type where key and velue is class json 
    maybe we need to show about json format, so import Json first
'''

def timeline(user):
    data = []
    for user_tweet in tweepy.Cursor(api.user_timeline,
                                    screen_name = user,
                                    tweet_mode = 'extended').pages():
        for i_json in user_tweet:
            data.append(i_json._json)
    return data
timeline(user)
Out[7]:
[{'created_at': 'Sun May 08 18:01:33 +0000 2022',
  'id': 1523362483636908032,
  'id_str': '1523362483636908032',
  'full_text': 'RT @POTUS: Happy Mother’s Day, @FLOTUS. You’re the love of my life and the life of my love. You bring me joy and laughter every day, and I’…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'FLOTUS',
     'name': 'Jill Biden',
     'id': 1349154719386775552,
     'id_str': '1349154719386775552',
     'indices': [31, 38]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun May 08 18:00:30 +0000 2022',
   'id': 1523362221283180544,
   'id_str': '1523362221283180544',
   'full_text': 'Happy Mother’s Day, @FLOTUS. You’re the love of my life and the life of my love. You bring me joy and laughter every day, and I’m so grateful for everything you do for our family. https://t.co/02HU743uFZ',
   'truncated': False,
   'display_text_range': [0, 179],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'FLOTUS',
      'name': 'Jill Biden',
      'id': 1349154719386775552,
      'id_str': '1349154719386775552',
      'indices': [20, 27]}],
    'urls': [],
    'media': [{'id': 1523362208851406854,
      'id_str': '1523362208851406854',
      'indices': [180, 203],
      'media_url': 'http://pbs.twimg.com/media/FSQR25rXsAYv6zL.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FSQR25rXsAYv6zL.jpg',
      'url': 'https://t.co/02HU743uFZ',
      'display_url': 'pic.twitter.com/02HU743uFZ',
      'expanded_url': 'https://twitter.com/POTUS/status/1523362221283180544/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 976, 'h': 685, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 477, 'resize': 'fit'},
       'large': {'w': 976, 'h': 685, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1523362208851406854,
      'id_str': '1523362208851406854',
      'indices': [180, 203],
      'media_url': 'http://pbs.twimg.com/media/FSQR25rXsAYv6zL.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FSQR25rXsAYv6zL.jpg',
      'url': 'https://t.co/02HU743uFZ',
      'display_url': 'pic.twitter.com/02HU743uFZ',
      'expanded_url': 'https://twitter.com/POTUS/status/1523362221283180544/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 976, 'h': 685, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 477, 'resize': 'fit'},
       'large': {'w': 976, 'h': 685, 'resize': 'fit'}}},
     {'id': 1523362212127166464,
      'id_str': '1523362212127166464',
      'indices': [180, 203],
      'media_url': 'http://pbs.twimg.com/media/FSQR3F4X0AABKpB.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FSQR3F4X0AABKpB.jpg',
      'url': 'https://t.co/02HU743uFZ',
      'display_url': 'pic.twitter.com/02HU743uFZ',
      'expanded_url': 'https://twitter.com/POTUS/status/1523362221283180544/photo/1',
      'type': 'photo',
      'sizes': {'small': {'w': 680, 'h': 484, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 973, 'h': 693, 'resize': 'fit'},
       'large': {'w': 973, 'h': 693, 'resize': 'fit'}}},
     {'id': 1523362215071465472,
      'id_str': '1523362215071465472',
      'indices': [180, 203],
      'media_url': 'http://pbs.twimg.com/media/FSQR3Q2WQAAbnNM.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FSQR3Q2WQAAbnNM.jpg',
      'url': 'https://t.co/02HU743uFZ',
      'display_url': 'pic.twitter.com/02HU743uFZ',
      'expanded_url': 'https://twitter.com/POTUS/status/1523362221283180544/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 1489, 'h': 1035, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 473, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 834, 'resize': 'fit'}}},
     {'id': 1523362218259234818,
      'id_str': '1523362218259234818',
      'indices': [180, 203],
      'media_url': 'http://pbs.twimg.com/media/FSQR3cuXwAIghF-.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FSQR3cuXwAIghF-.jpg',
      'url': 'https://t.co/02HU743uFZ',
      'display_url': 'pic.twitter.com/02HU743uFZ',
      'expanded_url': 'https://twitter.com/POTUS/status/1523362221283180544/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 840, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1472, 'h': 1031, 'resize': 'fit'},
       'small': {'w': 680, 'h': 476, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5303,
   'favorite_count': 57684,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5303,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun May 08 15:43:01 +0000 2022',
  'id': 1523327622779969541,
  'id_str': '1523327622779969541',
  'full_text': "My mom believed the greatest virtue of all was courage, and that someday the bravery that exists in every heart will be summoned. \n\nTo the extraordinary mothers everywhere, I wish you all a happy Mother's Day. https://t.co/YCAknZYlzX",
  'truncated': False,
  'display_text_range': [0, 209],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1523327617616781315,
     'id_str': '1523327617616781315',
     'indices': [210, 233],
     'media_url': 'http://pbs.twimg.com/media/FSPyZbSXIAMYJov.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FSPyZbSXIAMYJov.jpg',
     'url': 'https://t.co/YCAknZYlzX',
     'display_url': 'pic.twitter.com/YCAknZYlzX',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1523327622779969541/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'large': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1523327617616781315,
     'id_str': '1523327617616781315',
     'indices': [210, 233],
     'media_url': 'http://pbs.twimg.com/media/FSPyZbSXIAMYJov.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FSPyZbSXIAMYJov.jpg',
     'url': 'https://t.co/YCAknZYlzX',
     'display_url': 'pic.twitter.com/YCAknZYlzX',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1523327622779969541/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'large': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1795,
  'favorite_count': 12239,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat May 07 23:39:00 +0000 2022',
  'id': 1523085018805202944,
  'id_str': '1523085018805202944',
  'full_text': 'When I took office, there were around 20 million people relying on unemployment benefits to feed their families; today, that number is around 1 million—the lowest since 1970. \n\nWe are building an economy that values the dignity of work.',
  'truncated': False,
  'display_text_range': [0, 236],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4023,
  'favorite_count': 25244,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat May 07 19:00:04 +0000 2022',
  'id': 1523014824157847552,
  'id_str': '1523014824157847552',
  'full_text': 'There have been only 3 months in the last 50 years where the unemployment rate in America is lower than it is now. \n\nThis is a direct result of the American Rescue Plan, our COVID vaccination program, and my plan to grow our economy from the bottom up and middle out.',
  'truncated': False,
  'display_text_range': [0, 267],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3005,
  'favorite_count': 16364,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri May 06 23:09:00 +0000 2022',
  'id': 1522715081213104133,
  'id_str': '1522715081213104133',
  'full_text': 'The Republican plan led by Senator Rick Scott of Florida would tax half of our small business owners an extra $1,200 a year on average.\n\nMy plan would make it easier to start a small business by expanding their access to capital.',
  'truncated': False,
  'display_text_range': [0, 229],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3636,
  'favorite_count': 16372,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri May 06 20:24:00 +0000 2022',
  'id': 1522673558270496770,
  'id_str': '1522673558270496770',
  'full_text': "Today, we learned that the economy created 428,000 jobs in April—bringing the total number of jobs created since I took office to 8.3 million.\n\nThere's more work to do, but our plans and policies have produced the strongest job creation economy in modern times.",
  'truncated': False,
  'display_text_range': [0, 261],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1832,
  'favorite_count': 10304,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri May 06 17:29:01 +0000 2022',
  'id': 1522629518808301572,
  'id_str': '1522629518808301572',
  'full_text': 'All the talk about the deficit from my Republican friends—I love it. \n\nThe deficit was reduced by $350 billion in my first year in office, and we are on track to reduce it by another $1.5 trillion.',
  'truncated': False,
  'display_text_range': [0, 197],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6659,
  'favorite_count': 35308,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 05 23:20:00 +0000 2022',
  'id': 1522355461961535488,
  'id_str': '1522355461961535488',
  'full_text': 'My plan to reduce the deficit would help reduce inflationary pressures and lower everyday costs for families.\n\nMy plan lets Medicare negotiate the price of prescription drugs. We can cap the price of insulin at $35 instead of the hundreds of dollars for some families.',
  'truncated': False,
  'display_text_range': [0, 268],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2284,
  'favorite_count': 12583,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 05 20:02:39 +0000 2022',
  'id': 1522305795265806337,
  'id_str': '1522305795265806337',
  'full_text': 'RT @POTUS: Today, I met with grassroots worker organizers to thank them for their leadership in organizing unions. From the Amazon Labor Un…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu May 05 19:55:44 +0000 2022',
   'id': 1522304054084390914,
   'id_str': '1522304054084390914',
   'full_text': 'Today, I met with grassroots worker organizers to thank them for their leadership in organizing unions. From the Amazon Labor Union to IATSE at Titmouse Productions, these folks are inspiring a movement of workers across the country to fight for the pay and benefits they deserve. https://t.co/QZwdUEX3Xp',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1522304047637794816,
      'id_str': '1522304047637794816',
      'indices': [281, 304],
      'media_url': 'http://pbs.twimg.com/media/FSBPdz-XEAAAEJK.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FSBPdz-XEAAAEJK.jpg',
      'url': 'https://t.co/QZwdUEX3Xp',
      'display_url': 'pic.twitter.com/QZwdUEX3Xp',
      'expanded_url': 'https://twitter.com/POTUS/status/1522304054084390914/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1522304047637794816,
      'id_str': '1522304047637794816',
      'indices': [281, 304],
      'media_url': 'http://pbs.twimg.com/media/FSBPdz-XEAAAEJK.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FSBPdz-XEAAAEJK.jpg',
      'url': 'https://t.co/QZwdUEX3Xp',
      'display_url': 'pic.twitter.com/QZwdUEX3Xp',
      'expanded_url': 'https://twitter.com/POTUS/status/1522304054084390914/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'}}},
     {'id': 1522304051530117122,
      'id_str': '1522304051530117122',
      'indices': [281, 304],
      'media_url': 'http://pbs.twimg.com/media/FSBPeCeXMAInqnR.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FSBPeCeXMAInqnR.jpg',
      'url': 'https://t.co/QZwdUEX3Xp',
      'display_url': 'pic.twitter.com/QZwdUEX3Xp',
      'expanded_url': 'https://twitter.com/POTUS/status/1522304054084390914/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5328,
   'favorite_count': 38355,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5328,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 05 18:26:01 +0000 2022',
  'id': 1522281479170109442,
  'id_str': '1522281479170109442',
  'full_text': 'While there’s still more work to do, we’re on track to cut the federal deficit by another $1.5 trillion by the end of this fiscal year—the biggest decline in a single year ever in American history.',
  'truncated': False,
  'display_text_range': [0, 197],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2750,
  'favorite_count': 17141,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 05 16:30:04 +0000 2022',
  'id': 1522252296649953280,
  'id_str': '1522252296649953280',
  'full_text': 'Let me tell you about this Ultra-MAGA Agenda.\nhttps://t.co/Cl41pqMEX1',
  'truncated': False,
  'display_text_range': [0, 69],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1522223847377887232,
     'id_str': '1522223847377887232',
     'indices': [46, 69],
     'media_url': 'http://pbs.twimg.com/media/FSAGlroXEAAVw2e.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FSAGlroXEAAVw2e.jpg',
     'url': 'https://t.co/Cl41pqMEX1',
     'display_url': 'pic.twitter.com/Cl41pqMEX1',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1522223923278057480/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1522223923278057480,
     'source_status_id_str': '1522223923278057480',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1522223847377887232,
     'id_str': '1522223847377887232',
     'indices': [46, 69],
     'media_url': 'http://pbs.twimg.com/media/FSAGlroXEAAVw2e.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FSAGlroXEAAVw2e.jpg',
     'url': 'https://t.co/Cl41pqMEX1',
     'display_url': 'pic.twitter.com/Cl41pqMEX1',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1522223923278057480/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1522223923278057480,
     'source_status_id_str': '1522223923278057480',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 60360,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1522223847377887232/vid/540x540/jKKYTEzb0E6MAN8U.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1522223847377887232/pl/VFiCEUUMlm145jl_.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1522223847377887232/vid/720x720/d4pcgKqkLibGwFUH.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1522223847377887232/vid/320x320/ZCbj0nc2NCDIgMek.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2078,
  'favorite_count': 8346,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed May 04 23:45:01 +0000 2022',
  'id': 1521999366898298882,
  'id_str': '1521999366898298882',
  'full_text': 'Senator Rick Scott released an Ultra-MAGA Agenda.\n\nIt could raise taxes on 75 million American families. \n\nUnder this new plan, while big corporations and billionaires would pay nothing more, working-class folks are going to pay a hell of a lot more.',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 11101,
  'favorite_count': 34754,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed May 04 00:46:00 +0000 2022',
  'id': 1521652328507527168,
  'id_str': '1521652328507527168',
  'full_text': 'At the federal level, we will need more pro-choice senators and a pro-choice majority in the House to adopt legislation that codifies Roe, which I will work to pass and sign into law.',
  'truncated': False,
  'display_text_range': [0, 183],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 8371,
  'favorite_count': 58041,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 03 21:33:01 +0000 2022',
  'id': 1521603759901708288,
  'id_str': '1521603759901708288',
  'full_text': 'If the Court overturns Roe, it will fall on our nation’s elected officials at all levels of government to protect a woman’s right to choose. \n\nAnd it will fall on voters to elect pro-choice officials this November.',
  'truncated': False,
  'display_text_range': [0, 214],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7423,
  'favorite_count': 51317,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 03 18:05:02 +0000 2022',
  'id': 1521551422931845123,
  'id_str': '1521551422931845123',
  'full_text': 'I believe that a woman’s right to choose is fundamental. Roe has been the law of the land for almost fifty years, and basic fairness and the stability of our law demand that it not be overturned.\n\nWe will be ready when any ruling is issued.',
  'truncated': False,
  'display_text_range': [0, 240],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 12460,
  'favorite_count': 107658,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 03 14:44:18 +0000 2022',
  'id': 1521500905862008835,
  'id_str': '1521500905862008835',
  'full_text': 'RT @POTUS: My statement on the reported Supreme Court decision draft. https://t.co/Kt3bP0kzqU',
  'truncated': False,
  'display_text_range': [0, 93],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1521485981249150976,
     'id_str': '1521485981249150976',
     'indices': [70, 93],
     'media_url': 'http://pbs.twimg.com/media/FR1ncFMXoAAuSN8.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FR1ncFMXoAAuSN8.jpg',
     'url': 'https://t.co/Kt3bP0kzqU',
     'display_url': 'pic.twitter.com/Kt3bP0kzqU',
     'expanded_url': 'https://twitter.com/POTUS/status/1521485987133771782/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 481, 'h': 680, 'resize': 'fit'},
      'large': {'w': 1449, 'h': 2048, 'resize': 'fit'},
      'medium': {'w': 849, 'h': 1200, 'resize': 'fit'}},
     'source_status_id': 1521485987133771782,
     'source_status_id_str': '1521485987133771782',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1521485981249150976,
     'id_str': '1521485981249150976',
     'indices': [70, 93],
     'media_url': 'http://pbs.twimg.com/media/FR1ncFMXoAAuSN8.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FR1ncFMXoAAuSN8.jpg',
     'url': 'https://t.co/Kt3bP0kzqU',
     'display_url': 'pic.twitter.com/Kt3bP0kzqU',
     'expanded_url': 'https://twitter.com/POTUS/status/1521485987133771782/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 481, 'h': 680, 'resize': 'fit'},
      'large': {'w': 1449, 'h': 2048, 'resize': 'fit'},
      'medium': {'w': 849, 'h': 1200, 'resize': 'fit'}},
     'source_status_id': 1521485987133771782,
     'source_status_id_str': '1521485987133771782',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue May 03 13:45:01 +0000 2022',
   'id': 1521485987133771782,
   'id_str': '1521485987133771782',
   'full_text': 'My statement on the reported Supreme Court decision draft. https://t.co/Kt3bP0kzqU',
   'truncated': False,
   'display_text_range': [0, 58],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1521485981249150976,
      'id_str': '1521485981249150976',
      'indices': [59, 82],
      'media_url': 'http://pbs.twimg.com/media/FR1ncFMXoAAuSN8.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FR1ncFMXoAAuSN8.jpg',
      'url': 'https://t.co/Kt3bP0kzqU',
      'display_url': 'pic.twitter.com/Kt3bP0kzqU',
      'expanded_url': 'https://twitter.com/POTUS/status/1521485987133771782/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 481, 'h': 680, 'resize': 'fit'},
       'large': {'w': 1449, 'h': 2048, 'resize': 'fit'},
       'medium': {'w': 849, 'h': 1200, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1521485981249150976,
      'id_str': '1521485981249150976',
      'indices': [59, 82],
      'media_url': 'http://pbs.twimg.com/media/FR1ncFMXoAAuSN8.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FR1ncFMXoAAuSN8.jpg',
      'url': 'https://t.co/Kt3bP0kzqU',
      'display_url': 'pic.twitter.com/Kt3bP0kzqU',
      'expanded_url': 'https://twitter.com/POTUS/status/1521485987133771782/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 481, 'h': 680, 'resize': 'fit'},
       'large': {'w': 1449, 'h': 2048, 'resize': 'fit'},
       'medium': {'w': 849, 'h': 1200, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 22043,
   'favorite_count': 110282,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 22043,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon May 02 22:45:02 +0000 2022',
  'id': 1521259496454213632,
  'id_str': '1521259496454213632',
  'full_text': "As the proud husband of an educator, I've seen firsthand the dedication and selflessness of our nation's educators. \n\nTeaching isn't what @DrBiden does, it's who she is. On Teacher Appreciation Week, we honor teachers' work to build confidence and inspire curiosity. https://t.co/oyYOyt5cfc",
  'truncated': False,
  'display_text_range': [0, 266],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'DrBiden',
     'name': 'Dr. Jill Biden',
     'id': 821784477076750338,
     'id_str': '821784477076750338',
     'indices': [138, 146]}],
   'urls': [],
   'media': [{'id': 1521259491764981761,
     'id_str': '1521259491764981761',
     'indices': [267, 290],
     'media_url': 'http://pbs.twimg.com/media/FRyZcqHX0AEgLsZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FRyZcqHX0AEgLsZ.jpg',
     'url': 'https://t.co/oyYOyt5cfc',
     'display_url': 'pic.twitter.com/oyYOyt5cfc',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1521259496454213632/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 453, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
      'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1521259491764981761,
     'id_str': '1521259491764981761',
     'indices': [267, 290],
     'media_url': 'http://pbs.twimg.com/media/FRyZcqHX0AEgLsZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FRyZcqHX0AEgLsZ.jpg',
     'url': 'https://t.co/oyYOyt5cfc',
     'display_url': 'pic.twitter.com/oyYOyt5cfc',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1521259496454213632/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 453, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
      'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2634,
  'favorite_count': 23470,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon May 02 20:05:01 +0000 2022',
  'id': 1521219229600698369,
  'id_str': '1521219229600698369',
  'full_text': "Last year, we saw businesses with fewer than 50 workers create 1,900,000 jobs for the first three quarters of 2021 alone. \n\nWhile there’s still more work to do, that's the highest rate of small business creation ever recorded in a single year.",
  'truncated': False,
  'display_text_range': [0, 243],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1682,
  'favorite_count': 9121,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 02 16:48:03 +0000 2022',
  'id': 1521169660791697408,
  'id_str': '1521169660791697408',
  'full_text': 'The Republican proposal, led by Senator Rick Scott, would raise taxes on 6.1 million small business owners—including 82% of small business owners who earn less than $50,000 a year. \n\nThat’s just not right.',
  'truncated': False,
  'display_text_range': [0, 205],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7871,
  'favorite_count': 31099,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 02 14:26:01 +0000 2022',
  'id': 1521133913908944896,
  'id_str': '1521133913908944896',
  'full_text': 'RT @POTUS: Jill and I extend our warmest wishes to all who are celebrating Eid al-Fitr. As Muslims around the world conclude the month of R…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon May 02 13:57:35 +0000 2022',
   'id': 1521126761592934400,
   'id_str': '1521126761592934400',
   'full_text': 'Jill and I extend our warmest wishes to all who are celebrating Eid al-Fitr. As Muslims around the world conclude the month of Ramadan, may the spirit of community, compassion, and service we have witnessed over the month continue throughout the year.',
   'truncated': False,
   'display_text_range': [0, 251],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5706,
   'favorite_count': 47086,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5706,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 02 14:00:24 +0000 2022',
  'id': 1521127470858223616,
  'id_str': '1521127470858223616',
  'full_text': 'The people who made a difference in my life, in a fundamental way, were teachers.\n\nThis National Teacher Appreciation Week, we honor their service and passion and celebrate the immeasurable contributions of our nation’s educators in schools from coast to coast.',
  'truncated': False,
  'display_text_range': [0, 261],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2394,
  'favorite_count': 15663,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun May 01 17:02:01 +0000 2022',
  'id': 1520810784632324097,
  'id_str': '1520810784632324097',
  'full_text': "I grew up in a family where, when prices went up for things like gasoline, it became a discussion at the kitchen table. We felt it. \n\nThat's why I'm focused on doing everything I can to lower the cost of gas and energy and accelerate our transition to clean energy.",
  'truncated': False,
  'display_text_range': [0, 265],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4891,
  'favorite_count': 38382,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun May 01 14:45:01 +0000 2022',
  'id': 1520776308313235456,
  'id_str': '1520776308313235456',
  'full_text': 'Just as Putin chose to launch this brutal invasion, he could make the choice to end it. \n\nRussia is the aggressor, and the world must and will hold Russia accountable.',
  'truncated': False,
  'display_text_range': [0, 167],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5719,
  'favorite_count': 42038,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 30 23:45:00 +0000 2022',
  'id': 1520549814324416518,
  'id_str': '1520549814324416518',
  'full_text': 'Our party is working to ensure that we can expand our Democratic majorities in the years to come—and we need your help to do it. \n\nChip in before the end of the month deadline to help elect Democrats up and down the ballot: \nhttps://t.co/Ivryo0uc4U',
  'truncated': False,
  'display_text_range': [0, 248],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/Ivryo0uc4U',
     'expanded_url': 'https://secure.actblue.com/donate/social-april?refcode=sm_20220430_jrb',
     'display_url': 'secure.actblue.com/donate/social-…',
     'indices': [225, 248]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 801,
  'favorite_count': 4246,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 30 22:44:00 +0000 2022',
  'id': 1520534463482150912,
  'id_str': '1520534463482150912',
  'full_text': 'With the help of the American Rescue Plan, local governments were able to add a record 279,000 new educators in 2021 and nearly 46,000 teaching jobs in the first months of 2022.',
  'truncated': False,
  'display_text_range': [0, 177],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2409,
  'favorite_count': 14191,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 30 20:14:01 +0000 2022',
  'id': 1520496716734210048,
  'id_str': '1520496716734210048',
  'full_text': 'Thanks in large part to the American Rescue Plan, last year, Americans applied to start 5.4 million new businesses—20% more than any other year on record.\n\nThe American economy is strong because our small businesses are strong.',
  'truncated': False,
  'display_text_range': [0, 227],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2155,
  'favorite_count': 10699,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 30 19:52:01 +0000 2022',
  'id': 1520491178956836864,
  'id_str': '1520491178956836864',
  'full_text': "Twelve years later, Republicans still haven't stopped their attacks on the Affordable Care Act. \n\nIf they have their way, 100 million Americans with preexisting conditions could once again be denied health care coverage by their insurance companies.",
  'truncated': False,
  'display_text_range': [0, 249],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3408,
  'favorite_count': 14268,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 30 18:18:13 +0000 2022',
  'id': 1520467577050439682,
  'id_str': '1520467577050439682',
  'full_text': 'The Republican plan led by Senator Rick Scott of Florida would tax half of our small business owners an extra $1,200 a year on average. https://t.co/2kHWJDrxq3',
  'truncated': False,
  'display_text_range': [0, 135],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1520467522482577408,
     'id_str': '1520467522482577408',
     'indices': [136, 159],
     'media_url': 'http://pbs.twimg.com/media/FRnJM2_WYAEokSg.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FRnJM2_WYAEokSg.jpg',
     'url': 'https://t.co/2kHWJDrxq3',
     'display_url': 'pic.twitter.com/2kHWJDrxq3',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1520467577050439682/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1520467522482577408,
     'id_str': '1520467522482577408',
     'indices': [136, 159],
     'media_url': 'http://pbs.twimg.com/media/FRnJM2_WYAEokSg.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FRnJM2_WYAEokSg.jpg',
     'url': 'https://t.co/2kHWJDrxq3',
     'display_url': 'pic.twitter.com/2kHWJDrxq3',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1520467577050439682/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 47847,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1520467522482577408/vid/720x720/Ct9OzRVU7X6eaGUq.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1520467522482577408/vid/540x540/LNBNcWYaFbwvLqwZ.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1520467522482577408/pl/pwAQhfUInaPKnQwF.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1520467522482577408/vid/320x320/HYbQ7zam2lhdq7Ri.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2261,
  'favorite_count': 7381,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 30 16:05:01 +0000 2022',
  'id': 1520434054415491079,
  'id_str': '1520434054415491079',
  'full_text': 'Through decades of organizing, negotiating, picketing, and protesting, labor unions secured vital workplace protections that union and non-union workers rely on today, and we are working to strengthen both unions and the workplace protections they provide.',
  'truncated': False,
  'display_text_range': [0, 256],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1624,
  'favorite_count': 9836,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 30 00:54:00 +0000 2022',
  'id': 1520204789761589248,
  'id_str': '1520204789761589248',
  'full_text': 'Not only do Republicans oppose making big corporations pay their fair share—they want middle class families and small business owners to pay more in taxes.',
  'truncated': False,
  'display_text_range': [0, 155],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7146,
  'favorite_count': 33627,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 29 23:09:00 +0000 2022',
  'id': 1520178366015549446,
  'id_str': '1520178366015549446',
  'full_text': "A stronger economy built from the bottom up and the middle out puts greater power in workers' hands to improve their lives, provide for their families, and choose higher quality, higher-paying, and safer jobs.",
  'truncated': False,
  'display_text_range': [0, 209],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2584,
  'favorite_count': 14466,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 29 21:30:02 +0000 2022',
  'id': 1520153460544581634,
  'id_str': '1520153460544581634',
  'full_text': 'Democrats are working tirelessly to open doors for more outstanding entrepreneurs.\n\nBut the Republican plan led by Senator Rick Scott would tax half of our small business owners an extra $1,200 a year on average.',
  'truncated': False,
  'display_text_range': [0, 212],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3122,
  'favorite_count': 12678,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 29 17:10:02 +0000 2022',
  'id': 1520088026516529152,
  'id_str': '1520088026516529152',
  'full_text': "American workers are beginning to rebuild our nation's roads, bridges, ports, and waterways.\n\nThe Bipartisan Infrastructure Law will create new jobs, modernize communities across the country, and open infrastructure jobs to people of all backgrounds.",
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1637,
  'favorite_count': 9197,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 28 22:52:12 +0000 2022',
  'id': 1519811748483809281,
  'id_str': '1519811748483809281',
  'full_text': 'This is not your father’s Republican Party. https://t.co/trUWTISdx5',
  'truncated': False,
  'display_text_range': [0, 43],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1519811701268492288,
     'id_str': '1519811701268492288',
     'indices': [44, 67],
     'media_url': 'http://pbs.twimg.com/media/FRd0um4XwAEX2ta.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FRd0um4XwAEX2ta.jpg',
     'url': 'https://t.co/trUWTISdx5',
     'display_url': 'pic.twitter.com/trUWTISdx5',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1519811748483809281/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1519811701268492288,
     'id_str': '1519811701268492288',
     'indices': [44, 67],
     'media_url': 'http://pbs.twimg.com/media/FRd0um4XwAEX2ta.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FRd0um4XwAEX2ta.jpg',
     'url': 'https://t.co/trUWTISdx5',
     'display_url': 'pic.twitter.com/trUWTISdx5',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1519811748483809281/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 31898,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1519811701268492288/vid/540x540/XteWILquuHQPvUXf.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1519811701268492288/pl/zAZJ2pHswuZtei6L.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1519811701268492288/vid/320x320/-THp1k3CAGzrhVlN.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1519811701268492288/vid/720x720/k9azbU1M644UILlH.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Not your father’s Republican Party',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1851,
  'favorite_count': 8991,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 28 17:28:00 +0000 2022',
  'id': 1519730163054956544,
  'id_str': '1519730163054956544',
  'full_text': "Ensuring worker safety is a national priority and a moral imperative.\n\nOn Workers Memorial Day, we honor and remember those who lost their lives on the job and reaffirm every worker's basic right to a safe and healthy workplace.",
  'truncated': False,
  'display_text_range': [0, 228],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1134,
  'favorite_count': 7197,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 28 16:00:02 +0000 2022',
  'id': 1519708023832383490,
  'id_str': '1519708023832383490',
  'full_text': 'RT @POTUS: I just signed a request to Congress for critical security, economic, and humanitarian assistance to help Ukraine continue to cou…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 28 15:52:41 +0000 2022',
   'id': 1519706176644169728,
   'id_str': '1519706176644169728',
   'full_text': 'I just signed a request to Congress for critical security, economic, and humanitarian assistance to help Ukraine continue to counter Putin’s aggression at a pivotal moment.\n\nWe need this bill to support Ukraine in its fight for freedom.',
   'truncated': False,
   'display_text_range': [0, 236],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5738,
   'favorite_count': 37438,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5738,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 25 01:35:01 +0000 2022',
  'id': 1518403170338279424,
  'id_str': '1518403170338279424',
  'full_text': 'RT @POTUS: Congratulations to @EmmanuelMacron on his re-election. France is our oldest ally and a key partner in addressing global challeng…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'EmmanuelMacron',
     'name': 'Emmanuel Macron',
     'id': 1976143068,
     'id_str': '1976143068',
     'indices': [30, 45]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Apr 24 22:50:52 +0000 2022',
   'id': 1518361861661544448,
   'id_str': '1518361861661544448',
   'full_text': 'Congratulations to @EmmanuelMacron on his re-election. France is our oldest ally and a key partner in addressing global challenges. I look forward to our continued close cooperation — including on supporting Ukraine, defending democracy, and countering climate change.',
   'truncated': False,
   'display_text_range': [0, 268],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'EmmanuelMacron',
      'name': 'Emmanuel Macron',
      'id': 1976143068,
      'id_str': '1976143068',
      'indices': [19, 34]}],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 18221,
   'favorite_count': 151547,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 18221,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Apr 24 17:06:01 +0000 2022',
  'id': 1518275076403400704,
  'id_str': '1518275076403400704',
  'full_text': 'Thanks to the Bipartisan Infrastructure Law, we’re going to start replacing 100% of the lead pipes and water lines that go into homes and schools in this country.\n\nEvery American, every child, should be able to turn on a faucet and drink water that’s clean.',
  'truncated': False,
  'display_text_range': [0, 257],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4452,
  'favorite_count': 24182,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Apr 24 14:51:45 +0000 2022',
  'id': 1518241289657016322,
  'id_str': '1518241289657016322',
  'full_text': 'RT @POTUS: Jill and I send warm wishes to all our friends in the Orthodox Christian community who are observing Easter today. We rejoice wi…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Apr 24 14:50:06 +0000 2022',
   'id': 1518240874076979203,
   'id_str': '1518240874076979203',
   'full_text': 'Jill and I send warm wishes to all our friends in the Orthodox Christian community who are observing Easter today. We rejoice with you over the Resurrection of Jesus Christ and the triumph of light over darkness. May the peace of Christ be with you today and always.',
   'truncated': False,
   'display_text_range': [0, 266],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4244,
   'favorite_count': 34237,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4244,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 23 22:40:00 +0000 2022',
  'id': 1517996741332713472,
  'id_str': '1517996741332713472',
  'full_text': 'The unemployment rate for veterans is 2.4%—tied for the lowest rate on record. \n\nThere is still more work to do, but this historic progress is the result of rebuilding America’s economy from the bottom up and the middle out.',
  'truncated': False,
  'display_text_range': [0, 224],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3474,
  'favorite_count': 16365,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 23 20:30:01 +0000 2022',
  'id': 1517964027120472066,
  'id_str': '1517964027120472066',
  'full_text': 'Through the Bipartisan Infrastructure Law, we’re investing $25 billion to upgrade and modernize American airports.',
  'truncated': False,
  'display_text_range': [0, 114],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2612,
  'favorite_count': 15326,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 23 15:17:00 +0000 2022',
  'id': 1517885256627634177,
  'id_str': '1517885256627634177',
  'full_text': 'The United States will ban Russian-affiliated ships from our ports.\n\nThat means no ship that sails under the Russian flag or that is owned or operated by a Russian interest will be allowed to dock in a United States port or access our shores. None.',
  'truncated': False,
  'display_text_range': [0, 248],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5741,
  'favorite_count': 41728,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 23 01:06:00 +0000 2022',
  'id': 1517671094693601280,
  'id_str': '1517671094693601280',
  'full_text': 'Thanks to the Bipartisan Infrastructure Law, we’re going to plant 1.2 billion trees across the country to begin the vital work of reforesting America. It makes sense and also makes a big difference in our cities and on our city streets.',
  'truncated': False,
  'display_text_range': [0, 236],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4183,
  'favorite_count': 26649,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 22 22:04:08 +0000 2022',
  'id': 1517625324514721796,
  'id_str': '1517625324514721796',
  'full_text': 'RT @POTUS: I am calling on Congress to pass new investments and tax credits to lower costs for families.  \n\nThat includes tax credits to bu…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 22 22:02:00 +0000 2022',
   'id': 1517624790353432586,
   'id_str': '1517624790353432586',
   'full_text': 'I am calling on Congress to pass new investments and tax credits to lower costs for families.  \n\nThat includes tax credits to buy an electric or fuel-cell vehicle, solar panels, heat pumps, and more efficient windows — saving money on gas and energy bills.\n\nGet a bill to my desk.',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6307,
   'favorite_count': 35354,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6307,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 22 13:55:01 +0000 2022',
  'id': 1517502237722955784,
  'id_str': '1517502237722955784',
  'full_text': 'On Earth Day, we’re committed to building a future where everyone has clean air to breathe, clean water to drink, and healthy communities to work and live.\n\nBy investing in climate resilience and infrastructure, and a clean energy future, we can tackle the climate crisis head-on.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1744,
  'favorite_count': 10953,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 22 00:58:00 +0000 2022',
  'id': 1517306693771837441,
  'id_str': '1517306693771837441',
  'full_text': "Putin has failed to achieve his grand ambitions on the battlefield.\n\nPresident Zelenskyy and his democratically elected government remain in power, and Ukrainian armed forces—joined by brave Ukrainian civilians—have thwarted Russia's conquest of their country.",
  'truncated': False,
  'display_text_range': [0, 260],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2164,
  'favorite_count': 16114,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 21 22:54:00 +0000 2022',
  'id': 1517275488691142657,
  'id_str': '1517275488691142657',
  'full_text': 'Our unity at home and our unity with allies, partners, and the Ukrainian people is sending an unmistakable message to Putin: He will never succeed in dominating and occupying all of Ukraine. That will not happen.',
  'truncated': False,
  'display_text_range': [0, 212],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1859,
  'favorite_count': 12438,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 21 18:28:01 +0000 2022',
  'id': 1517208548584927232,
  'id_str': '1517208548584927232',
  'full_text': 'I’m doing everything I can to bring down prices to address Putin’s Price Hike.  \n\nThat’s why I authorized the release of 1 million barrels per day on average for the next six months from our Strategic Petroleum Reserve.',
  'truncated': False,
  'display_text_range': [0, 219],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3220,
  'favorite_count': 24980,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 21 15:23:08 +0000 2022',
  'id': 1517162022844182533,
  'id_str': '1517162022844182533',
  'full_text': 'RT @POTUS: I met with Prime Minister Shmyhal of Ukraine this morning to convey our continued commitment to support Ukraine in the face of R…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 21 15:21:58 +0000 2022',
   'id': 1517161729490395138,
   'id_str': '1517161729490395138',
   'full_text': "I met with Prime Minister Shmyhal of Ukraine this morning to convey our continued commitment to support Ukraine in the face of Russia's brutal war of aggression. https://t.co/EBF0tbwGqq",
   'truncated': False,
   'display_text_range': [0, 161],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1517161724159438848,
      'id_str': '1517161724159438848',
      'indices': [162, 185],
      'media_url': 'http://pbs.twimg.com/media/FQ4KjMNXsAAwQjf.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FQ4KjMNXsAAwQjf.jpg',
      'url': 'https://t.co/EBF0tbwGqq',
      'display_url': 'pic.twitter.com/EBF0tbwGqq',
      'expanded_url': 'https://twitter.com/POTUS/status/1517161729490395138/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1517161724159438848,
      'id_str': '1517161724159438848',
      'indices': [162, 185],
      'media_url': 'http://pbs.twimg.com/media/FQ4KjMNXsAAwQjf.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FQ4KjMNXsAAwQjf.jpg',
      'url': 'https://t.co/EBF0tbwGqq',
      'display_url': 'pic.twitter.com/EBF0tbwGqq',
      'expanded_url': 'https://twitter.com/POTUS/status/1517161729490395138/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2301,
   'favorite_count': 14403,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2301,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 20 22:41:00 +0000 2022',
  'id': 1516909829188734979,
  'id_str': '1516909829188734979',
  'full_text': 'Thanks to the Bipartisan Infrastructure Law, we’re making the most significant investment in modernizing our roads and bridges since the Interstate Highway System was built under President Eisenhower.',
  'truncated': False,
  'display_text_range': [0, 200],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2184,
  'favorite_count': 13323,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 20 16:08:02 +0000 2022',
  'id': 1516810932768460804,
  'id_str': '1516810932768460804',
  'full_text': 'Our recovery so far has led to the creation of 7.9 million new jobs—more jobs created over the first 14 months than any president ever. The unemployment rate is at 3.6%, down from 6.4% in January 2021.\n\nWe have more work to do, but America is on the move.',
  'truncated': False,
  'display_text_range': [0, 255],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2365,
  'favorite_count': 13984,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 19 21:40:00 +0000 2022',
  'id': 1516532090313052163,
  'id_str': '1516532090313052163',
  'full_text': 'While Congressional Republicans are proposing big tax increases on middle-class families, I am fighting for tax cuts for the middle class and to ensure that the super wealthy and large corporations pay their fair share.',
  'truncated': False,
  'display_text_range': [0, 219],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4594,
  'favorite_count': 23477,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 19 16:30:05 +0000 2022',
  'id': 1516454095976026120,
  'id_str': '1516454095976026120',
  'full_text': 'The difference couldn’t be clearer:\n\nUnder the Congressional Republican Tax Plan, 75 million middle-class families’ taxes will increase an average of almost $1,500 a year.\n\nUnder my plan, no one making less than $400,000 will have their taxes raised.',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4781,
  'favorite_count': 19011,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Apr 17 15:46:19 +0000 2022',
  'id': 1515718307919409165,
  'id_str': '1515718307919409165',
  'full_text': 'RT @POTUS: As we reflect today on Christ’s Resurrection, we are reminded that with faith, hope, and love — even death can be defeated. From…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Apr 17 14:35:27 +0000 2022',
   'id': 1515700473348730883,
   'id_str': '1515700473348730883',
   'full_text': 'As we reflect today on Christ’s Resurrection, we are reminded that with faith, hope, and love — even death can be defeated. From our family to yours, we wish you hope, health, joy, and the peace of God, which passes all understanding. Happy Easter and may God bless and keep you.',
   'truncated': False,
   'display_text_range': [0, 279],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10330,
   'favorite_count': 87984,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10330,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 15 18:24:01 +0000 2022',
  'id': 1515033214833860611,
  'id_str': '1515033214833860611',
  'full_text': 'When we build more in America, we increase economic capacity, and ultimately it helps lower everyday prices for families.\nhttps://t.co/hWTyRb4kIL',
  'truncated': False,
  'display_text_range': [0, 145],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1514997179013861378,
     'id_str': '1514997179013861378',
     'indices': [122, 145],
     'media_url': 'http://pbs.twimg.com/media/FQZch18XsAwk33-.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FQZch18XsAwk33-.jpg',
     'url': 'https://t.co/hWTyRb4kIL',
     'display_url': 'pic.twitter.com/hWTyRb4kIL',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1514997239256686600/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1514997239256686600,
     'source_status_id_str': '1514997239256686600',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1514997179013861378,
     'id_str': '1514997179013861378',
     'indices': [122, 145],
     'media_url': 'http://pbs.twimg.com/media/FQZch18XsAwk33-.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FQZch18XsAwk33-.jpg',
     'url': 'https://t.co/hWTyRb4kIL',
     'display_url': 'pic.twitter.com/hWTyRb4kIL',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1514997239256686600/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1514997239256686600,
     'source_status_id_str': '1514997239256686600',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 20253,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1514997179013861378/pl/2BUsIbt9sIkL4ZcX.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1514997179013861378/vid/540x540/hjx8KkY9mUTikNlX.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1514997179013861378/vid/320x320/EW_36OzmzxWn5DUY.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1514997179013861378/vid/720x720/eQNkCRGMjHnlgmtB.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1147,
  'favorite_count': 7170,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 15 17:09:01 +0000 2022',
  'id': 1515014340390400003,
  'id_str': '1515014340390400003',
  'full_text': "From day one, every action I've taken to rebuild our economy has been guided by one principle—made in America. It means using products, parts, and materials built right here in the United States. It means bringing manufacturing jobs back and building supply chains here at home.",
  'truncated': False,
  'display_text_range': [0, 278],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2955,
  'favorite_count': 19439,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 15 15:30:26 +0000 2022',
  'id': 1514989532986458119,
  'id_str': '1514989532986458119',
  'full_text': 'RT @POTUS: Jill and I join our fellow Christians in observing Good Friday. Today, we remember Jesus’s sacrifice on the cross, pray for all…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 15 14:36:16 +0000 2022',
   'id': 1514975903260020752,
   'id_str': '1514975903260020752',
   'full_text': 'Jill and I join our fellow Christians in observing Good Friday. Today, we remember Jesus’s sacrifice on the cross, pray for all who suffer, and seek to love others as God has loved us.',
   'truncated': False,
   'display_text_range': [0, 184],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8305,
   'favorite_count': 74580,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8305,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 15 13:34:51 +0000 2022',
  'id': 1514960446238908419,
  'id_str': '1514960446238908419',
  'full_text': 'RT @POTUS: Happy Passover to all who celebrate in America, Israel, and around the world. May God bless you all during this season of renewa…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 15 13:29:36 +0000 2022',
   'id': 1514959125804994575,
   'id_str': '1514959125804994575',
   'full_text': 'Happy Passover to all who celebrate in America, Israel, and around the world. May God bless you all during this season of renewal, this festival of freedom.\n \nFrom our family to yours: Chag sameach.',
   'truncated': False,
   'display_text_range': [0, 198],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4223,
   'favorite_count': 34338,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4223,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 13 16:11:02 +0000 2022',
  'id': 1514274974630035460,
  'id_str': '1514274974630035460',
  'full_text': 'To help deal with Putin’s Price Hike, I’ve authorized the use of 1 million barrels per day on average for the next six months from our Strategic Petroleum Reserve—the largest release of our national reserve in history.',
  'truncated': False,
  'display_text_range': [0, 218],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5130,
  'favorite_count': 39964,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 12 20:30:32 +0000 2022',
  'id': 1513977893898100738,
  'id_str': '1513977893898100738',
  'full_text': 'RT @POTUS: Jill and I are praying for those injured in the New York City subway shooting. We are grateful for the first responders and civi…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 12 20:26:20 +0000 2022',
   'id': 1513976833729261570,
   'id_str': '1513976833729261570',
   'full_text': 'Jill and I are praying for those injured in the New York City subway shooting. We are grateful for the first responders and civilians who jumped into action. My team has been in touch with city officials and we are working to support efforts on the ground.',
   'truncated': False,
   'display_text_range': [0, 256],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3594,
   'favorite_count': 33632,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3594,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 09 20:33:00 +0000 2022',
  'id': 1512891350206791681,
  'id_str': '1512891350206791681',
  'full_text': 'America is back to work. \n\nOur economy added 7.9 million jobs since I took office—more jobs created on average per month than under any other president in history. That’s millions of families with a little more breathing room and the dignity a job provides.',
  'truncated': False,
  'display_text_range': [0, 257],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3105,
  'favorite_count': 20004,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 09 00:38:46 +0000 2022',
  'id': 1512590810239356937,
  'id_str': '1512590810239356937',
  'full_text': 'Today is a good day—a day that history is going to remember. https://t.co/gskJzbu2DK',
  'truncated': False,
  'display_text_range': [0, 84],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1512535824642068482,
     'id_str': '1512535824642068482',
     'indices': [61, 84],
     'media_url': 'http://pbs.twimg.com/media/FP2bXRUXMAAUEv9.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FP2bXRUXMAAUEv9.jpg',
     'url': 'https://t.co/gskJzbu2DK',
     'display_url': 'pic.twitter.com/gskJzbu2DK',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1512535878031269888/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1512535878031269888,
     'source_status_id_str': '1512535878031269888',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1512535824642068482,
     'id_str': '1512535824642068482',
     'indices': [61, 84],
     'media_url': 'http://pbs.twimg.com/media/FP2bXRUXMAAUEv9.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FP2bXRUXMAAUEv9.jpg',
     'url': 'https://t.co/gskJzbu2DK',
     'display_url': 'pic.twitter.com/gskJzbu2DK',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1512535878031269888/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1512535878031269888,
     'source_status_id_str': '1512535878031269888',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 30730,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1512535824642068482/pl/M46ufc_HQoA41ADr.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1512535824642068482/vid/720x720/OGchXl9i0z6QRv49.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1512535824642068482/vid/540x540/YqMbO6FW5p8vDX20.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1512535824642068482/vid/320x320/9IeVxUnrndfsrUqg.mp4?tag=14'}]},
     'additional_media_info': {'title': '“We’ve made it.”',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3235,
  'favorite_count': 22556,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 08 18:51:21 +0000 2022',
  'id': 1512503378693263361,
  'id_str': '1512503378693263361',
  'full_text': 'RT @POTUS: Judge Jackson brings a rare combination of experience and qualifications to the Court.\n \nA federal judge who served on the secon…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 08 18:21:19 +0000 2022',
   'id': 1512495821144698888,
   'id_str': '1512495821144698888',
   'full_text': 'Judge Jackson brings a rare combination of experience and qualifications to the Court.\n \nA federal judge who served on the second most powerful court. A former public defender with the ability to explain issues of law in ways everybody can understand. A new perspective.',
   'truncated': False,
   'display_text_range': [0, 270],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1823,
   'favorite_count': 13828,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1823,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 08 16:31:20 +0000 2022',
  'id': 1512468142345363462,
  'id_str': '1512468142345363462',
  'full_text': 'RT @POTUS: Today is a good day for America. A day that history will remember. Tune in as the Vice President, Judge Ketanji Brown Jackson, a…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 08 16:30:35 +0000 2022',
   'id': 1512467955149418498,
   'id_str': '1512467955149418498',
   'full_text': 'Today is a good day for America. A day that history will remember. Tune in as the Vice President, Judge Ketanji Brown Jackson, and I deliver remarks on the Senate’s historic, bipartisan confirmation. https://t.co/sRxo0MpkcX',
   'truncated': False,
   'display_text_range': [0, 223],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/sRxo0MpkcX',
      'expanded_url': 'https://twitter.com/i/broadcasts/1vOGwyOkkZMxB',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [200, 223]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1706,
   'favorite_count': 8846,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1706,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 07 23:11:00 +0000 2022',
  'id': 1512206336955756550,
  'id_str': '1512206336955756550',
  'full_text': 'RT @POTUS: Historic moment for our courts and for our country. Congratulations, Judge Jackson. https://t.co/eLSfs1QoHB',
  'truncated': False,
  'display_text_range': [0, 118],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1512186128232849408,
     'id_str': '1512186128232849408',
     'indices': [95, 118],
     'media_url': 'http://pbs.twimg.com/media/FPxdUf7XwAcjzg9.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPxdUf7XwAcjzg9.jpg',
     'url': 'https://t.co/eLSfs1QoHB',
     'display_url': 'pic.twitter.com/eLSfs1QoHB',
     'expanded_url': 'https://twitter.com/POTUS/status/1512186186898493452/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1512186186898493452,
     'source_status_id_str': '1512186186898493452',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1512186128232849408,
     'id_str': '1512186128232849408',
     'indices': [95, 118],
     'media_url': 'http://pbs.twimg.com/media/FPxdUf7XwAcjzg9.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPxdUf7XwAcjzg9.jpg',
     'url': 'https://t.co/eLSfs1QoHB',
     'display_url': 'pic.twitter.com/eLSfs1QoHB',
     'expanded_url': 'https://twitter.com/POTUS/status/1512186186898493452/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1512186186898493452,
     'source_status_id_str': '1512186186898493452',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 25191,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1512186128232849408/vid/320x320/tML4Re6Zfh8NNBkd.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1512186128232849408/vid/540x540/_MdatJofaqs8pRsT.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1512186128232849408/pl/dptck_lHtnQgFT-J.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1512186128232849408/vid/720x720/SrMXxF8yVHWyEHiu.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004743,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 07 21:50:56 +0000 2022',
   'id': 1512186186898493452,
   'id_str': '1512186186898493452',
   'full_text': 'Historic moment for our courts and for our country. Congratulations, Judge Jackson. https://t.co/eLSfs1QoHB',
   'truncated': False,
   'display_text_range': [0, 83],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1512186128232849408,
      'id_str': '1512186128232849408',
      'indices': [84, 107],
      'media_url': 'http://pbs.twimg.com/media/FPxdUf7XwAcjzg9.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FPxdUf7XwAcjzg9.jpg',
      'url': 'https://t.co/eLSfs1QoHB',
      'display_url': 'pic.twitter.com/eLSfs1QoHB',
      'expanded_url': 'https://twitter.com/POTUS/status/1512186186898493452/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1512186128232849408,
      'id_str': '1512186128232849408',
      'indices': [84, 107],
      'media_url': 'http://pbs.twimg.com/media/FPxdUf7XwAcjzg9.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FPxdUf7XwAcjzg9.jpg',
      'url': 'https://t.co/eLSfs1QoHB',
      'display_url': 'pic.twitter.com/eLSfs1QoHB',
      'expanded_url': 'https://twitter.com/POTUS/status/1512186186898493452/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 25191,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1512186128232849408/vid/320x320/tML4Re6Zfh8NNBkd.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1512186128232849408/vid/540x540/_MdatJofaqs8pRsT.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1512186128232849408/pl/dptck_lHtnQgFT-J.m3u8?tag=14&container=fmp4'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1512186128232849408/vid/720x720/SrMXxF8yVHWyEHiu.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 17163,
   'favorite_count': 109320,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 17163,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 07 21:02:02 +0000 2022',
  'id': 1512173878285684737,
  'id_str': '1512173878285684737',
  'full_text': 'Congratulations, Ketanji Brown Jackson. https://t.co/CGe6fdl7gk',
  'truncated': False,
  'display_text_range': [0, 39],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1512173874909229059,
     'id_str': '1512173874909229059',
     'indices': [40, 63],
     'media_url': 'http://pbs.twimg.com/media/FPxSIJyXMAMdae4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPxSIJyXMAMdae4.jpg',
     'url': 'https://t.co/CGe6fdl7gk',
     'display_url': 'pic.twitter.com/CGe6fdl7gk',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1512173878285684737/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1200, 'h': 1200, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1512173874909229059,
     'id_str': '1512173874909229059',
     'indices': [40, 63],
     'media_url': 'http://pbs.twimg.com/media/FPxSIJyXMAMdae4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPxSIJyXMAMdae4.jpg',
     'url': 'https://t.co/CGe6fdl7gk',
     'display_url': 'pic.twitter.com/CGe6fdl7gk',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1512173878285684737/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1200, 'h': 1200, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 10602,
  'favorite_count': 108441,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 07 18:45:34 +0000 2022',
  'id': 1512139538705129493,
  'id_str': '1512139538705129493',
  'full_text': 'RT @POTUS: Judge Jackson’s confirmation was a historic moment for our nation. We’ve taken another step toward making our highest court refl…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 07 18:43:48 +0000 2022',
   'id': 1512139093135835153,
   'id_str': '1512139093135835153',
   'full_text': 'Judge Jackson’s confirmation was a historic moment for our nation. We’ve taken another step toward making our highest court reflect the diversity of America. She will be an incredible Justice, and I was honored to share this moment with her. https://t.co/K8SAh25NL5',
   'truncated': False,
   'display_text_range': [0, 241],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1512139086605205506,
      'id_str': '1512139086605205506',
      'indices': [242, 265],
      'media_url': 'http://pbs.twimg.com/media/FPwyfNQWQAI9e-e.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FPwyfNQWQAI9e-e.jpg',
      'url': 'https://t.co/K8SAh25NL5',
      'display_url': 'pic.twitter.com/K8SAh25NL5',
      'expanded_url': 'https://twitter.com/POTUS/status/1512139093135835153/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1512139086605205506,
      'id_str': '1512139086605205506',
      'indices': [242, 265],
      'media_url': 'http://pbs.twimg.com/media/FPwyfNQWQAI9e-e.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FPwyfNQWQAI9e-e.jpg',
      'url': 'https://t.co/K8SAh25NL5',
      'display_url': 'pic.twitter.com/K8SAh25NL5',
      'expanded_url': 'https://twitter.com/POTUS/status/1512139093135835153/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 18288,
   'favorite_count': 153982,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 18288,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 07 17:07:43 +0000 2022',
  'id': 1512114912935530504,
  'id_str': '1512114912935530504',
  'full_text': 'Over the last four weeks, fewer Americans filed initial claims for unemployment insurance than any time in our nation’s recorded history. \n\nWhile we have more work to do to lower costs for families, today’s data demonstrates that America is on the move again.',
  'truncated': False,
  'display_text_range': [0, 259],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1207,
  'favorite_count': 8374,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 06 22:57:00 +0000 2022',
  'id': 1511840425358893060,
  'id_str': '1511840425358893060',
  'full_text': 'Today, we enshrine in law our recognition that the Postal Service is fundamental to our economy, to our democracy, to our health, and the very sense of who we are as a nation.',
  'truncated': False,
  'display_text_range': [0, 175],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2984,
  'favorite_count': 24175,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 06 16:26:16 +0000 2022',
  'id': 1511742091805831176,
  'id_str': '1511742091805831176',
  'full_text': "If Republicans have their way, up to 100 million Americans with preexisting conditions could once again be denied health care coverage by their insurance companies.\n\nI’ve got a better idea. Instead of destroying the Affordable Care Act, let's keep building on it. https://t.co/jqtoDPgekn",
  'truncated': False,
  'display_text_range': [0, 263],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1511742030065582086,
     'id_str': '1511742030065582086',
     'indices': [264, 287],
     'media_url': 'http://pbs.twimg.com/media/FPrJau6XwAM9_Il.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPrJau6XwAM9_Il.jpg',
     'url': 'https://t.co/jqtoDPgekn',
     'display_url': 'pic.twitter.com/jqtoDPgekn',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1511742091805831176/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1511742030065582086,
     'id_str': '1511742030065582086',
     'indices': [264, 287],
     'media_url': 'http://pbs.twimg.com/media/FPrJau6XwAM9_Il.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPrJau6XwAM9_Il.jpg',
     'url': 'https://t.co/jqtoDPgekn',
     'display_url': 'pic.twitter.com/jqtoDPgekn',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1511742091805831176/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 44644,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511742030065582086/vid/320x320/xK-D5Vc8H_uQiCC4.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1511742030065582086/pl/RqB7eqnQ-vQHDNUl.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511742030065582086/vid/540x540/J_WhaQ7z1TU0S1pQ.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511742030065582086/vid/720x720/4T6dpLfVcTMI99IW.mp4?tag=14'}]},
     'additional_media_info': {'title': "Let's keep building on the Affordable Care Act",
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1359,
  'favorite_count': 7240,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 06 14:45:05 +0000 2022',
  'id': 1511716630765711360,
  'id_str': '1511716630765711360',
  'full_text': 'RT @POTUS: Today, my Administration is extending the pause on federal student loan repayments through August 31st, 2022. https://t.co/xwicA…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Apr 06 14:02:25 +0000 2022',
   'id': 1511705892487577606,
   'id_str': '1511705892487577606',
   'full_text': 'Today, my Administration is extending the pause on federal student loan repayments through August 31st, 2022. https://t.co/xwicA1hCW3',
   'truncated': False,
   'display_text_range': [0, 109],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1511705835864535044,
      'id_str': '1511705835864535044',
      'indices': [110, 133],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1511705835864535044/img/ums-BaYX-TRRzT51.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1511705835864535044/img/ums-BaYX-TRRzT51.jpg',
      'url': 'https://t.co/xwicA1hCW3',
      'display_url': 'pic.twitter.com/xwicA1hCW3',
      'expanded_url': 'https://twitter.com/POTUS/status/1511705892487577606/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1511705835864535044,
      'id_str': '1511705835864535044',
      'indices': [110, 133],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1511705835864535044/img/ums-BaYX-TRRzT51.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1511705835864535044/img/ums-BaYX-TRRzT51.jpg',
      'url': 'https://t.co/xwicA1hCW3',
      'display_url': 'pic.twitter.com/xwicA1hCW3',
      'expanded_url': 'https://twitter.com/POTUS/status/1511705892487577606/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 29320,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1511705835864535044/vid/720x720/Ssij6gMZZlD22JU1.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1511705835864535044/pl/GSzgp_2Ua1Th283b.m3u8?tag=14&container=fmp4'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1511705835864535044/vid/540x540/ifTiTHrdgUiVC87G.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1511705835864535044/vid/320x320/vnugyTRr89JW7nfk.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4800,
   'favorite_count': 33533,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4800,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 06 00:56:00 +0000 2022',
  'id': 1511507984463052815,
  'id_str': '1511507984463052815',
  'full_text': 'Over 31 million people now have health insurance through the Affordable Care Act.\n4 out of 5 Americans can find quality coverage for under $10 a month.\nThe average family is saving $2,400 a year on their premiums.\n\nThe Affordable Care Act is stronger now than it has ever been.',
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2002,
  'favorite_count': 13463,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 05 23:09:01 +0000 2022',
  'id': 1511481058809856006,
  'id_str': '1511481058809856006',
  'full_text': 'Mr. President, welcome back to the White House.\nhttps://t.co/JY2pjxOQKd',
  'truncated': False,
  'display_text_range': [0, 71],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1511413586823888903,
     'id_str': '1511413586823888903',
     'indices': [48, 71],
     'media_url': 'http://pbs.twimg.com/media/FPmesdnXEBMbwhn.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPmesdnXEBMbwhn.jpg',
     'url': 'https://t.co/JY2pjxOQKd',
     'display_url': 'pic.twitter.com/JY2pjxOQKd',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1511413641656082436/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1511413641656082436,
     'source_status_id_str': '1511413641656082436',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1511413586823888903,
     'id_str': '1511413586823888903',
     'indices': [48, 71],
     'media_url': 'http://pbs.twimg.com/media/FPmesdnXEBMbwhn.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPmesdnXEBMbwhn.jpg',
     'url': 'https://t.co/JY2pjxOQKd',
     'display_url': 'pic.twitter.com/JY2pjxOQKd',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1511413641656082436/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1511413641656082436,
     'source_status_id_str': '1511413641656082436',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 3503,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1511413586823888903/pl/bjN_RyryOxs18CZ6.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511413586823888903/vid/320x320/MAMs4HZsbLVWH7XG.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511413586823888903/vid/540x540/AsDiObFi2qqrxcug.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511413586823888903/vid/720x720/mcTfRzu01_lF3eN5.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4713,
  'favorite_count': 68130,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 05 17:42:08 +0000 2022',
  'id': 1511398798597230601,
  'id_str': '1511398798597230601',
  'full_text': 'RT @POTUS: It’s an honor to welcome my friend President @BarackObama back to the White House. I look forward to discussing the big step we’…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'BarackObama',
     'name': 'Barack Obama',
     'id': 813286,
     'id_str': '813286',
     'indices': [56, 68]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 05 17:40:46 +0000 2022',
   'id': 1511398453552861201,
   'id_str': '1511398453552861201',
   'full_text': 'It’s an honor to welcome my friend President @BarackObama back to the White House. I look forward to discussing the big step we’re announcing today that would expand coverage under the Affordable Care Act for families and lower health care costs for hardworking Americans. https://t.co/FkLnkB96Jt',
   'truncated': False,
   'display_text_range': [0, 272],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'BarackObama',
      'name': 'Barack Obama',
      'id': 813286,
      'id_str': '813286',
      'indices': [45, 57]}],
    'urls': [],
    'media': [{'id': 1511398448456683526,
      'id_str': '1511398448456683526',
      'indices': [273, 296],
      'media_url': 'http://pbs.twimg.com/media/FPmQ4ZJWUAYc2aM.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FPmQ4ZJWUAYc2aM.jpg',
      'url': 'https://t.co/FkLnkB96Jt',
      'display_url': 'pic.twitter.com/FkLnkB96Jt',
      'expanded_url': 'https://twitter.com/POTUS/status/1511398453552861201/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1511398448456683526,
      'id_str': '1511398448456683526',
      'indices': [273, 296],
      'media_url': 'http://pbs.twimg.com/media/FPmQ4ZJWUAYc2aM.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FPmQ4ZJWUAYc2aM.jpg',
      'url': 'https://t.co/FkLnkB96Jt',
      'display_url': 'pic.twitter.com/FkLnkB96Jt',
      'expanded_url': 'https://twitter.com/POTUS/status/1511398453552861201/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 12491,
   'favorite_count': 120694,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 12491,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 05 16:37:00 +0000 2022',
  'id': 1511382408137957384,
  'id_str': '1511382408137957384',
  'full_text': 'Thanks to the Bipartisan Infrastructure Law, we’re making the largest investment in American roads and bridges since the creation of the interstate highway system.',
  'truncated': False,
  'display_text_range': [0, 163],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2018,
  'favorite_count': 13861,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 05 00:24:00 +0000 2022',
  'id': 1511137543470911491,
  'id_str': '1511137543470911491',
  'full_text': 'After a long stretch, Americans are back to work, and the economy has gone from being on the mend to being on the move.',
  'truncated': False,
  'display_text_range': [0, 119],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3216,
  'favorite_count': 26557,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 04 22:53:00 +0000 2022',
  'id': 1511114642931818498,
  'id_str': '1511114642931818498',
  'full_text': '2021 was the best year for trucking employment since 1994—there are now 35,000 more trucking jobs than there were before the pandemic.',
  'truncated': False,
  'display_text_range': [0, 134],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2203,
  'favorite_count': 14763,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 04 16:39:14 +0000 2022',
  'id': 1511020578836303873,
  'id_str': '1511020578836303873',
  'full_text': 'Our economy has gone from being on the mend to being on the move. https://t.co/Amb9aw3gdx',
  'truncated': False,
  'display_text_range': [0, 65],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1511020524813668352,
     'id_str': '1511020524813668352',
     'indices': [66, 89],
     'media_url': 'http://pbs.twimg.com/media/FPg5NKpXEAYPl7f.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPg5NKpXEAYPl7f.jpg',
     'url': 'https://t.co/Amb9aw3gdx',
     'display_url': 'pic.twitter.com/Amb9aw3gdx',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1511020578836303873/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1511020524813668352,
     'id_str': '1511020524813668352',
     'indices': [66, 89],
     'media_url': 'http://pbs.twimg.com/media/FPg5NKpXEAYPl7f.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPg5NKpXEAYPl7f.jpg',
     'url': 'https://t.co/Amb9aw3gdx',
     'display_url': 'pic.twitter.com/Amb9aw3gdx',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1511020578836303873/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 23023,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1511020524813668352/pl/SeTVb9-6x3id5C-U.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511020524813668352/vid/540x540/LI2MD1wTwaopKTPm.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511020524813668352/vid/320x320/ZqzJJSQoqdLh597G.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1511020524813668352/vid/720x720/zAwcj2D5ZVMZz3XZ.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden on the March Jobs Report',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1369,
  'favorite_count': 8185,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 04 14:15:00 +0000 2022',
  'id': 1510984283535679489,
  'id_str': '1510984283535679489',
  'full_text': 'RT @POTUS: Judge Jackson will bring extraordinary qualifications, deep experience and intellect, and a rigorous judicial record to the Supr…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Apr 04 14:12:11 +0000 2022',
   'id': 1510983573398077450,
   'id_str': '1510983573398077450',
   'full_text': 'Judge Jackson will bring extraordinary qualifications, deep experience and intellect, and a rigorous judicial record to the Supreme Court. \n \nShe deserves to be confirmed as the next Justice.',
   'truncated': False,
   'display_text_range': [0, 191],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7512,
   'favorite_count': 57053,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7512,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Apr 03 22:53:01 +0000 2022',
  'id': 1510752259474444291,
  'id_str': '1510752259474444291',
  'full_text': 'Last year, we reduced the deficit by more than $350 billion. And now under my budget, we’re on track for the largest one-year reduction in the deficit in U.S. history.\n\nAmerica is on the move. https://t.co/8TbMH4BJ1z',
  'truncated': False,
  'display_text_range': [0, 192],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1510752254395097092,
     'id_str': '1510752254395097092',
     'indices': [193, 216],
     'media_url': 'http://pbs.twimg.com/media/FPdFK8rXIAQfMtr.png',
     'media_url_https': 'https://pbs.twimg.com/media/FPdFK8rXIAQfMtr.png',
     'url': 'https://t.co/8TbMH4BJ1z',
     'display_url': 'pic.twitter.com/8TbMH4BJ1z',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1510752259474444291/photo/1',
     'type': 'photo',
     'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
  'extended_entities': {'media': [{'id': 1510752254395097092,
     'id_str': '1510752254395097092',
     'indices': [193, 216],
     'media_url': 'http://pbs.twimg.com/media/FPdFK8rXIAQfMtr.png',
     'media_url_https': 'https://pbs.twimg.com/media/FPdFK8rXIAQfMtr.png',
     'url': 'https://t.co/8TbMH4BJ1z',
     'display_url': 'pic.twitter.com/8TbMH4BJ1z',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1510752259474444291/photo/1',
     'type': 'photo',
     'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3811,
  'favorite_count': 18980,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 02 22:38:00 +0000 2022',
  'id': 1510386091941150721,
  'id_str': '1510386091941150721',
  'full_text': "In March, the unemployment rate fell to 3.6%, down from 6.4% when I took office about 15 months ago – the fastest decline in unemployment to start a president's term ever recorded.",
  'truncated': False,
  'display_text_range': [0, 180],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6029,
  'favorite_count': 40741,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 02 20:36:01 +0000 2022',
  'id': 1510355395390414849,
  'id_str': '1510355395390414849',
  'full_text': 'A firefighter and a teacher shouldn’t pay a higher tax rate than a billionaire pays. That’s not right.\n\nMy budget contains a Billionaire Minimum Income Tax to make sure billionaires pay their fair share. https://t.co/MkPFrUsAo6',
  'truncated': False,
  'display_text_range': [0, 203],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1510355391137386498,
     'id_str': '1510355391137386498',
     'indices': [204, 227],
     'media_url': 'http://pbs.twimg.com/media/FPXcOd1XEAIc_cw.png',
     'media_url_https': 'https://pbs.twimg.com/media/FPXcOd1XEAIc_cw.png',
     'url': 'https://t.co/MkPFrUsAo6',
     'display_url': 'pic.twitter.com/MkPFrUsAo6',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1510355395390414849/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
  'extended_entities': {'media': [{'id': 1510355391137386498,
     'id_str': '1510355391137386498',
     'indices': [204, 227],
     'media_url': 'http://pbs.twimg.com/media/FPXcOd1XEAIc_cw.png',
     'media_url_https': 'https://pbs.twimg.com/media/FPXcOd1XEAIc_cw.png',
     'url': 'https://t.co/MkPFrUsAo6',
     'display_url': 'pic.twitter.com/MkPFrUsAo6',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1510355395390414849/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3547,
  'favorite_count': 23647,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 02 00:49:00 +0000 2022',
  'id': 1510056671313334280,
  'id_str': '1510056671313334280',
  'full_text': 'Putin’s invasion of Ukraine has driven up gas prices and food prices all over the world. \n\nTo help deal with that, yesterday I authorized the release of 1 million barrels per day for the next six months from our Strategic Petroleum Reserve.',
  'truncated': False,
  'display_text_range': [0, 240],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4912,
  'favorite_count': 36660,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 01 22:32:00 +0000 2022',
  'id': 1510022194214182914,
  'id_str': '1510022194214182914',
  'full_text': 'Last week, I met with NATO allies to reiterate our strong support for the Ukrainian people.\n\nPutin was banking on NATO being divided, but it has never been more united than it is today.',
  'truncated': False,
  'display_text_range': [0, 185],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1910,
  'favorite_count': 13827,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 01 19:43:01 +0000 2022',
  'id': 1509979666580389899,
  'id_str': '1509979666580389899',
  'full_text': 'Over the course of my presidency, our recovery has now created 7.9 million jobs—the most jobs created over the first 14 months of any presidency, in any term, ever.',
  'truncated': False,
  'display_text_range': [0, 164],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3630,
  'favorite_count': 23990,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 01 15:29:22 +0000 2022',
  'id': 1509915834877153285,
  'id_str': '1509915834877153285',
  'full_text': 'This week, I signed the Emmett Till Antilynching Act into law, making lynching a federal hate crime for the first time in American history.\n\nAs we work toward becoming a more perfect union, we must also come to terms with the sins of our past. https://t.co/kxuZ4BKof2',
  'truncated': False,
  'display_text_range': [0, 243],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1509915748608757766,
     'id_str': '1509915748608757766',
     'indices': [244, 267],
     'media_url': 'http://pbs.twimg.com/media/FPRMcqhXIAwTpuI.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPRMcqhXIAwTpuI.jpg',
     'url': 'https://t.co/kxuZ4BKof2',
     'display_url': 'pic.twitter.com/kxuZ4BKof2',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1509915834877153285/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1509915748608757766,
     'id_str': '1509915748608757766',
     'indices': [244, 267],
     'media_url': 'http://pbs.twimg.com/media/FPRMcqhXIAwTpuI.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPRMcqhXIAwTpuI.jpg',
     'url': 'https://t.co/kxuZ4BKof2',
     'display_url': 'pic.twitter.com/kxuZ4BKof2',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1509915834877153285/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 60060,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1509915748608757766/vid/320x320/kfdw65lBXjtZ1fjJ.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1509915748608757766/pl/nVFCbzFCPaig0fR9.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1509915748608757766/vid/720x720/etuNvFzVvOb4QXNC.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1509915748608757766/vid/540x540/ZsuNi7zLkmtVFGV7.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden Signs the Emmett Till Antilynching Act Into Law',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1231,
  'favorite_count': 7786,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 31 23:00:06 +0000 2022',
  'id': 1509666876116418567,
  'id_str': '1509666876116418567',
  'full_text': 'No longer will Americans have to scour the internet to find vaccines, treatments, tests, or masks. \n\nJust visit https://t.co/n2B6pfyjAt.',
  'truncated': False,
  'display_text_range': [0, 136],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/n2B6pfyjAt',
     'expanded_url': 'http://COVID.gov',
     'display_url': 'COVID.gov',
     'indices': [112, 135]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 779,
  'favorite_count': 4338,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 31 21:47:00 +0000 2022',
  'id': 1509648482558164999,
  'id_str': '1509648482558164999',
  'full_text': "Today, I'm authorizing the release of 1 million barrels of oil per day for the next six months—over 180 million barrels—from the Strategic Petroleum Reserve. This is a wartime bridge to increase oil supply until production ramps up later this year.",
  'truncated': False,
  'display_text_range': [0, 248],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3733,
  'favorite_count': 29688,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 31 17:25:15 +0000 2022',
  'id': 1509582610699362312,
  'id_str': '1509582610699362312',
  'full_text': 'RT @POTUS: To transgender Americans of all ages, I want you to know that you are so brave. You belong. I have your back. https://t.co/mD4F0…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 31 14:04:59 +0000 2022',
   'id': 1509532210495254528,
   'id_str': '1509532210495254528',
   'full_text': 'To transgender Americans of all ages, I want you to know that you are so brave. You belong. I have your back. https://t.co/mD4F0m3rU1',
   'truncated': False,
   'display_text_range': [0, 109],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1509531605714366478,
      'id_str': '1509531605714366478',
      'indices': [110, 133],
      'media_url': 'http://pbs.twimg.com/media/FPLvh5lVQAEXdrW.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FPLvh5lVQAEXdrW.jpg',
      'url': 'https://t.co/mD4F0m3rU1',
      'display_url': 'pic.twitter.com/mD4F0m3rU1',
      'expanded_url': 'https://twitter.com/POTUS/status/1509532210495254528/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1509531605714366478,
      'id_str': '1509531605714366478',
      'indices': [110, 133],
      'media_url': 'http://pbs.twimg.com/media/FPLvh5lVQAEXdrW.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FPLvh5lVQAEXdrW.jpg',
      'url': 'https://t.co/mD4F0m3rU1',
      'display_url': 'pic.twitter.com/mD4F0m3rU1',
      'expanded_url': 'https://twitter.com/POTUS/status/1509532210495254528/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 102894,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1509531605714366478/vid/640x360/cn951MoevoR7mZXL.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1509531605714366478/pl/m2JTGoYVBpmDqdTm.m3u8?tag=14&container=fmp4'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1509531605714366478/vid/480x270/AeuWZkUBGL1sjhcA.mp4?tag=14'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1509531605714366478/vid/1280x720/peqX_QcOXxYp3tEF.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9535,
   'favorite_count': 61982,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9535,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 31 14:38:01 +0000 2022',
  'id': 1509540525627658252,
  'id_str': '1509540525627658252',
  'full_text': 'My Billionaire Minimum Income Tax is fair, and it would raise $360 billion that can be used to lower costs for families and cut the deficit.\nhttps://t.co/mOpSJ03KrY',
  'truncated': False,
  'display_text_range': [0, 164],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1508799388168167424,
     'id_str': '1508799388168167424',
     'indices': [141, 164],
     'media_url': 'http://pbs.twimg.com/media/FPBVHXxXMAIFwUx.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPBVHXxXMAIFwUx.jpg',
     'url': 'https://t.co/mOpSJ03KrY',
     'display_url': 'pic.twitter.com/mOpSJ03KrY',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1508799465003565058/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1508799465003565058,
     'source_status_id_str': '1508799465003565058',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1508799388168167424,
     'id_str': '1508799388168167424',
     'indices': [141, 164],
     'media_url': 'http://pbs.twimg.com/media/FPBVHXxXMAIFwUx.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPBVHXxXMAIFwUx.jpg',
     'url': 'https://t.co/mOpSJ03KrY',
     'display_url': 'pic.twitter.com/mOpSJ03KrY',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1508799465003565058/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1508799465003565058,
     'source_status_id_str': '1508799465003565058',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 32532,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1508799388168167424/vid/320x320/qzZDD9VDTvcBj_Le.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1508799388168167424/vid/540x540/7cgf1887gly5eoZ7.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1508799388168167424/vid/720x720/w2x-N4Hyn9iz_aPZ.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1508799388168167424/pl/gAamfns25ciSg8Lt.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'President Biden Breaks Down The Billionaire Minimum Income Tax',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1974,
  'favorite_count': 11688,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 31 13:15:32 +0000 2022',
  'id': 1509519767304036358,
  'id_str': '1509519767304036358',
  'full_text': 'RT @POTUS: Today we celebrate the life and legacy of César Estrada Chávez, a champion for social justice and advocate for farm workers and…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 31 13:02:35 +0000 2022',
   'id': 1509516509508517892,
   'id_str': '1509516509508517892',
   'full_text': 'Today we celebrate the life and legacy of César Estrada Chávez, a champion for social justice and advocate for farm workers and working people who build and sustain our nation. https://t.co/fd3TXkvyLo',
   'truncated': False,
   'display_text_range': [0, 200],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/fd3TXkvyLo',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/presidential-actions/2022/03/30/a-proclamation-on-cesar-chavez-day-2022/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [177, 200]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1217,
   'favorite_count': 6502,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1217,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 30 23:03:11 +0000 2022',
  'id': 1509305265673445377,
  'id_str': '1509305265673445377',
  'full_text': "We know boosters are critical to providing an additional level of protection against COVID-19. That's why I received my second booster today. https://t.co/yAV6SyXxpv",
  'truncated': False,
  'display_text_range': [0, 141],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1509305221620670475,
     'id_str': '1509305221620670475',
     'indices': [142, 165],
     'media_url': 'http://pbs.twimg.com/media/FPIhI1JXsAk3XOS.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPIhI1JXsAk3XOS.jpg',
     'url': 'https://t.co/yAV6SyXxpv',
     'display_url': 'pic.twitter.com/yAV6SyXxpv',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1509305265673445377/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1509305221620670475,
     'id_str': '1509305221620670475',
     'indices': [142, 165],
     'media_url': 'http://pbs.twimg.com/media/FPIhI1JXsAk3XOS.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FPIhI1JXsAk3XOS.jpg',
     'url': 'https://t.co/yAV6SyXxpv',
     'display_url': 'pic.twitter.com/yAV6SyXxpv',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1509305265673445377/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 5583,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1509305221620670475/vid/720x720/ppMQbAW4SEj5jIx6.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1509305221620670475/vid/540x540/QvY6enUby5ETHBm0.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1509305221620670475/vid/320x320/HN8nEn0ptP0V3q3E.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1509305221620670475/pl/EPVrllgueCj-YyCk.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'President Biden Receives Second COVID-19 Booster Shot',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1712,
  'favorite_count': 14914,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 30 20:32:00 +0000 2022',
  'id': 1509267219880030210,
  'id_str': '1509267219880030210',
  'full_text': 'Today we launched https://t.co/n2B6pfyjAt, a one-stop shop where anyone in America can find what they need to navigate the virus.',
  'truncated': False,
  'display_text_range': [0, 129],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/n2B6pfyjAt',
     'expanded_url': 'http://COVID.gov',
     'display_url': 'COVID.gov',
     'indices': [18, 41]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 643,
  'favorite_count': 3212,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 30 16:16:01 +0000 2022',
  'id': 1509202797702651911,
  'id_str': '1509202797702651911',
  'full_text': 'Under my budget, nobody making less than $400,000 a year would pay a penny more in federal taxes',
  'truncated': False,
  'display_text_range': [0, 96],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7793,
  'favorite_count': 65797,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 29 20:21:44 +0000 2022',
  'id': 1508902249371738115,
  'id_str': '1508902249371738115',
  'full_text': 'RT @POTUS: I just signed the Emmett Till Antilynching Act into law — making lynching a federal hate crime for the first time in American hi…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 29 20:13:07 +0000 2022',
   'id': 1508900077208809477,
   'id_str': '1508900077208809477',
   'full_text': 'I just signed the Emmett Till Antilynching Act into law — making lynching a federal hate crime for the first time in American history.',
   'truncated': False,
   'display_text_range': [0, 134],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 27186,
   'favorite_count': 226436,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 27186,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 29 19:13:01 +0000 2022',
  'id': 1508884954847059974,
  'id_str': '1508884954847059974',
  'full_text': 'My budget includes historic deficit reduction, historic investments in our security at home and abroad, and an unprecedented commitment to building an economy where everyone has a chance to succeed.',
  'truncated': False,
  'display_text_range': [0, 198],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2160,
  'favorite_count': 15124,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 29 14:33:00 +0000 2022',
  'id': 1508814487880716311,
  'id_str': '1508814487880716311',
  'full_text': 'My budget makes the investments needed to reduce costs for families and make progress on my Unity Agenda—including investments to cut the costs of child care and health care; help families pay for other essentials; end cancer as we know it; and support our veterans.',
  'truncated': False,
  'display_text_range': [0, 266],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1524,
  'favorite_count': 10056,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 29 01:05:00 +0000 2022',
  'id': 1508611147024506881,
  'id_str': '1508611147024506881',
  'full_text': 'My budget would further reduce the deficit by continuing to support the economic growth that has increased revenues and ensuring that billionaires and large corporations pay their fair share.',
  'truncated': False,
  'display_text_range': [0, 191],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1789,
  'favorite_count': 11539,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 28 23:58:00 +0000 2022',
  'id': 1508594285377200129,
  'id_str': '1508594285377200129',
  'full_text': 'We are on track to reduce the federal deficit by more than $1.3 trillion this year, cutting in half the deficit from the last year of the previous administration and delivering the largest one-year reduction in the deficit in U.S. history.',
  'truncated': False,
  'display_text_range': [0, 239],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3364,
  'favorite_count': 19399,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 28 22:54:00 +0000 2022',
  'id': 1508578180680011787,
  'id_str': '1508578180680011787',
  'full_text': "A dictator bent on rebuilding an empire will never erase a people's love for liberty. \n\nBrutality will never grind down the will to be free. Ukraine will never be a victory for Russia.",
  'truncated': False,
  'display_text_range': [0, 184],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5670,
  'favorite_count': 38247,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 28 21:27:29 +0000 2022',
  'id': 1508556405867003905,
  'id_str': '1508556405867003905',
  'full_text': 'RT @POTUS: Every student deserves to feel safe and welcome in the classroom. Our LGBTQI+ youth deserve to be affirmed and accepted just as…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 28 19:56:21 +0000 2022',
   'id': 1508533470091522059,
   'id_str': '1508533470091522059',
   'full_text': 'Every student deserves to feel safe and welcome in the classroom. Our LGBTQI+ youth deserve to be affirmed and accepted just as they are. My Administration will continue to fight for dignity and opportunity for every student and family — in Florida and around the country.',
   'truncated': False,
   'display_text_range': [0, 272],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8018,
   'favorite_count': 53942,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8018,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 28 20:30:02 +0000 2022',
  'id': 1508541948671537160,
  'id_str': '1508541948671537160',
  'full_text': "Rather than breaking Ukrainian resolve, Russia's brutal tactics have strengthened their resolve. Rather than driving NATO apart, the West is now stronger and more united than it's ever been.",
  'truncated': False,
  'display_text_range': [0, 190],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3149,
  'favorite_count': 21889,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 28 19:46:58 +0000 2022',
  'id': 1508531109239439364,
  'id_str': '1508531109239439364',
  'full_text': 'RT @POTUS: My father had an expression: “Don’t tell me what you value. Show me your budget—and I’ll tell you what you value.”\n\nThe budget I…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 28 19:45:42 +0000 2022',
   'id': 1508530790249947147,
   'id_str': '1508530790249947147',
   'full_text': 'My father had an expression: “Don’t tell me what you value. Show me your budget—and I’ll tell you what you value.”\n\nThe budget I’m releasing today sends a clear message that we value fiscal responsibility, safety and security, and the investments needed to build a better America.',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5416,
   'favorite_count': 33948,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5416,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 28 16:54:02 +0000 2022',
  'id': 1508487590982430729,
  'id_str': '1508487590982430729',
  'full_text': "Russia's economy was ranked the 11th biggest economy in the world before this invasion. \n\nIt will soon not even rank among the top 20 in the world.",
  'truncated': False,
  'display_text_range': [0, 147],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4156,
  'favorite_count': 36734,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 27 17:48:00 +0000 2022',
  'id': 1508138784893947915,
  'id_str': '1508138784893947915',
  'full_text': 'The darkness that drives autocracy is ultimately no match for the flame of liberty that lights the souls of free people everywhere.\nhttps://t.co/y7B8mm6exD',
  'truncated': False,
  'display_text_range': [0, 155],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1507856927753125902,
     'id_str': '1507856927753125902',
     'indices': [132, 155],
     'media_url': 'http://pbs.twimg.com/media/FOz77GQXIAIWkvo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOz77GQXIAIWkvo.jpg',
     'url': 'https://t.co/y7B8mm6exD',
     'display_url': 'pic.twitter.com/y7B8mm6exD',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1507856972837756929/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1507856972837756929,
     'source_status_id_str': '1507856972837756929',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1507856927753125902,
     'id_str': '1507856927753125902',
     'indices': [132, 155],
     'media_url': 'http://pbs.twimg.com/media/FOz77GQXIAIWkvo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOz77GQXIAIWkvo.jpg',
     'url': 'https://t.co/y7B8mm6exD',
     'display_url': 'pic.twitter.com/y7B8mm6exD',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1507856972837756929/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1507856972837756929,
     'source_status_id_str': '1507856972837756929',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 28795,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507856927753125902/vid/720x720/atXaiUK-HKGJrlHE.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1507856927753125902/pl/ItuDDJX8gf48PzUZ.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507856927753125902/vid/320x320/ChS1Y_nltNPmiv-B.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507856927753125902/vid/540x540/-Dki4X6YdfxkCreK.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2824,
  'favorite_count': 16802,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 27 15:35:01 +0000 2022',
  'id': 1508105315157479431,
  'id_str': '1508105315157479431',
  'full_text': 'My message to the people of Ukraine: We stand with you. Period.',
  'truncated': False,
  'display_text_range': [0, 63],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 13962,
  'favorite_count': 140039,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 26 23:53:01 +0000 2022',
  'id': 1507868254936739843,
  'id_str': '1507868254936739843',
  'full_text': 'RT @POTUS: To the Russian people: You are not our enemy.\n \nThe American people stand with you and the brave citizens in Ukraine who want pe…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Mar 26 22:44:16 +0000 2022',
   'id': 1507850953835307011,
   'id_str': '1507850953835307011',
   'full_text': 'To the Russian people: You are not our enemy.\n \nThe American people stand with you and the brave citizens in Ukraine who want peace. https://t.co/gsbtNYLKDt',
   'truncated': False,
   'display_text_range': [0, 132],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1507850884486733832,
      'id_str': '1507850884486733832',
      'indices': [133, 156],
      'media_url': 'http://pbs.twimg.com/media/FOz2cubWUAUS5tz.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FOz2cubWUAUS5tz.jpg',
      'url': 'https://t.co/gsbtNYLKDt',
      'display_url': 'pic.twitter.com/gsbtNYLKDt',
      'expanded_url': 'https://twitter.com/POTUS/status/1507850953835307011/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1507850884486733832,
      'id_str': '1507850884486733832',
      'indices': [133, 156],
      'media_url': 'http://pbs.twimg.com/media/FOz2cubWUAUS5tz.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FOz2cubWUAUS5tz.jpg',
      'url': 'https://t.co/gsbtNYLKDt',
      'display_url': 'pic.twitter.com/gsbtNYLKDt',
      'expanded_url': 'https://twitter.com/POTUS/status/1507850953835307011/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 1280, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 150617,
       'variants': [{'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1507850884486733832/vid/480x270/7XDOYn8wZeug5FA2.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1507850884486733832/pl/ivC4igGUsTbAQxsd.m3u8?tag=14&container=fmp4'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1507850884486733832/vid/640x360/vef1wAiiEWi59zh1.mp4?tag=14'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1507850884486733832/vid/1280x720/FM_qBGVBus5KR09k.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4463,
   'favorite_count': 23809,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4463,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 26 23:52:54 +0000 2022',
  'id': 1507868226335789062,
  'id_str': '1507868226335789062',
  'full_text': 'RT @POTUS: Putin has the gall to say he is “de-Nazifying” Ukraine.\n\nThis lie isn’t just cynical. It is obscene. \n\nPresident Zelenskyy was d…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Mar 26 21:56:22 +0000 2022',
   'id': 1507838900554842115,
   'id_str': '1507838900554842115',
   'full_text': 'Putin has the gall to say he is “de-Nazifying” Ukraine.\n\nThis lie isn’t just cynical. It is obscene. \n\nPresident Zelenskyy was democratically elected. He is Jewish — his father’s family was wiped out in the Nazi Holocaust.',
   'truncated': False,
   'display_text_range': [0, 222],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 20977,
   'favorite_count': 129475,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 20977,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 26 17:17:45 +0000 2022',
  'id': 1507768783447986180,
  'id_str': '1507768783447986180',
  'full_text': 'RT @POTUS: Watch live as I deliver remarks on the united efforts of the free world to support the people of Ukraine, hold Russia accountabl…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Mar 26 17:17:06 +0000 2022',
   'id': 1507768621187145737,
   'id_str': '1507768621187145737',
   'full_text': 'Watch live as I deliver remarks on the united efforts of the free world to support the people of Ukraine, hold Russia accountable for its brutal war, and defend a future that is rooted in democratic principles. https://t.co/wXoCSgjOof',
   'truncated': False,
   'display_text_range': [0, 234],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/wXoCSgjOof',
      'expanded_url': 'https://twitter.com/i/broadcasts/1lPKqmywBkWKb',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [211, 234]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4144,
   'favorite_count': 18670,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4144,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 25 22:40:10 +0000 2022',
  'id': 1507487532015144963,
  'id_str': '1507487532015144963',
  'full_text': 'My message to the 82nd Airborne Division on the ground in Poland: Every single one of you stepped up. Thank you. https://t.co/9Z9NeiWllQ',
  'truncated': False,
  'display_text_range': [0, 112],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1507487494220271616,
     'id_str': '1507487494220271616',
     'indices': [113, 136],
     'media_url': 'http://pbs.twimg.com/media/FOusprkXMAMAX0t.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOusprkXMAMAX0t.jpg',
     'url': 'https://t.co/9Z9NeiWllQ',
     'display_url': 'pic.twitter.com/9Z9NeiWllQ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1507487532015144963/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1507487494220271616,
     'id_str': '1507487494220271616',
     'indices': [113, 136],
     'media_url': 'http://pbs.twimg.com/media/FOusprkXMAMAX0t.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOusprkXMAMAX0t.jpg',
     'url': 'https://t.co/9Z9NeiWllQ',
     'display_url': 'pic.twitter.com/9Z9NeiWllQ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1507487532015144963/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 14948,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1507487494220271616/pl/e4ShCGaO5WNAUlXy.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507487494220271616/vid/320x320/PifJ3m6dNgsLwLiV.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507487494220271616/vid/720x720/RHRA-3MdRO-BloeG.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507487494220271616/vid/540x540/YOTxiwn7XW2hRlcu.mp4?tag=14'}]},
     'additional_media_info': {'title': "President Biden's Message to the 82nd Airborne Division",
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1941,
  'favorite_count': 15035,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 25 21:43:00 +0000 2022',
  'id': 1507473148207378437,
  'id_str': '1507473148207378437',
  'full_text': 'Americans are getting back to work at a historic pace, with fewer Americans on unemployment insurance today than at any time in the last half century.',
  'truncated': False,
  'display_text_range': [0, 150],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2621,
  'favorite_count': 20679,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 25 15:25:16 +0000 2022',
  'id': 1507378087239036930,
  'id_str': '1507378087239036930',
  'full_text': 'The United States is prepared to commit more than $1 billion in humanitarian assistance to help get relief to millions of Ukrainians affected by the war in Ukraine. https://t.co/c6AeFn8QDn',
  'truncated': False,
  'display_text_range': [0, 164],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1507378026014781446,
     'id_str': '1507378026014781446',
     'indices': [165, 188],
     'media_url': 'http://pbs.twimg.com/media/FOtJkl2WQAEQJh5.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOtJkl2WQAEQJh5.jpg',
     'url': 'https://t.co/c6AeFn8QDn',
     'display_url': 'pic.twitter.com/c6AeFn8QDn',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1507378087239036930/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1507378026014781446,
     'id_str': '1507378026014781446',
     'indices': [165, 188],
     'media_url': 'http://pbs.twimg.com/media/FOtJkl2WQAEQJh5.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOtJkl2WQAEQJh5.jpg',
     'url': 'https://t.co/c6AeFn8QDn',
     'display_url': 'pic.twitter.com/c6AeFn8QDn',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1507378087239036930/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 52719,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507378026014781446/vid/720x720/Ob3t0fKSotCyZ3HB.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1507378026014781446/pl/jNozyu-Cn-aPKQEL.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507378026014781446/vid/540x540/2bMs_Gty7DS-oBPa.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1507378026014781446/vid/320x320/kMHBp8DGJlQKW1RK.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Humanitarian assistance for Ukraine',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1400,
  'favorite_count': 9225,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 25 01:02:00 +0000 2022',
  'id': 1507160840566460416,
  'id_str': '1507160840566460416',
  'full_text': 'NATO has never been more united than it is today. \n\nPutin is getting exactly the opposite of what he intended to have as a consequence of going into Ukraine.',
  'truncated': False,
  'display_text_range': [0, 157],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5981,
  'favorite_count': 52603,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 24 23:53:00 +0000 2022',
  'id': 1507143475262853122,
  'id_str': '1507143475262853122',
  'full_text': 'This morning, we received news that the number of Americans on unemployment insurance fell to its lowest level since 1970.\n\nThis historic progress is no accident: it’s the result of an economic strategy to grow the economy from the bottom up and middle out.',
  'truncated': False,
  'display_text_range': [0, 257],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3095,
  'favorite_count': 19036,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 24 12:22:27 +0000 2022',
  'id': 1506969692711362567,
  'id_str': '1506969692711362567',
  'full_text': 'RT @POTUS: Today in Brussels I’m meeting with our NATO Allies, G7 members, and the European Council to discuss our ongoing response to Russ…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 24 12:10:53 +0000 2022',
   'id': 1506966779721138179,
   'id_str': '1506966779721138179',
   'full_text': 'Today in Brussels I’m meeting with our NATO Allies, G7 members, and the European Council to discuss our ongoing response to Russia’s unprovoked and unjustified attack on Ukraine. We stand united in defense of democracy and with the people of Ukraine.',
   'truncated': False,
   'display_text_range': [0, 250],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6392,
   'favorite_count': 50565,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6392,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 24 01:00:05 +0000 2022',
  'id': 1506797968338345985,
  'id_str': '1506797968338345985',
  'full_text': 'The Affordable Care Act was groundbreaking and life-changing legislation that has provided access to health care to millions of Americans, including the more than 130 million Americans with preexisting conditions.',
  'truncated': False,
  'display_text_range': [0, 213],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1604,
  'favorite_count': 12469,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 23 23:27:00 +0000 2022',
  'id': 1506774544752726024,
  'id_str': '1506774544752726024',
  'full_text': 'The Affordable Care Act that was signed into law 12 years ago was the first step in ensuring that everyone has access to affordable health care. I am proud that since November 2021, 14.5 million Americans have signed up for quality, affordable coverage.',
  'truncated': False,
  'display_text_range': [0, 253],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1476,
  'favorite_count': 11085,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 23 22:05:59 +0000 2022',
  'id': 1506754153938399234,
  'id_str': '1506754153938399234',
  'full_text': 'RT @POTUS: Madeleine Albright was a force for goodness, grace, and decency — and for freedom. Hers were the hands that turned the tide of h…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 23 22:05:12 +0000 2022',
   'id': 1506753960211791872,
   'id_str': '1506753960211791872',
   'full_text': 'Madeleine Albright was a force for goodness, grace, and decency — and for freedom. Hers were the hands that turned the tide of history. Jill and I will miss her dearly and send our love and prayers to her family.',
   'truncated': False,
   'display_text_range': [0, 212],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6901,
   'favorite_count': 60854,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6901,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 23 16:10:01 +0000 2022',
  'id': 1506664575235944448,
  'id_str': '1506664575235944448',
  'full_text': 'On the anniversary of the Affordable Care Act being signed into law, know that as long as any American lies awake at night wondering how they’re going to pay their medical bills, we will keep fighting to lower costs and further expand health coverage.',
  'truncated': False,
  'display_text_range': [0, 251],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2137,
  'favorite_count': 14502,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 23 14:00:23 +0000 2022',
  'id': 1506631950790017028,
  'id_str': '1506631950790017028',
  'full_text': 'Twelve years ago today, I watched President Obama sign the Affordable Care Act into law. I was proud to serve as vice president every day, but never more so than on that historic day. https://t.co/14wgXW6Fvc',
  'truncated': False,
  'display_text_range': [0, 207],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1506609218547335177,
     'id_str': '1506609218547335177',
     'indices': [184, 207],
     'media_url': 'http://pbs.twimg.com/media/FOiNJscXEAAKfhf.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOiNJscXEAAKfhf.jpg',
     'url': 'https://t.co/14wgXW6Fvc',
     'display_url': 'pic.twitter.com/14wgXW6Fvc',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1506609278311972871/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1506609278311972871,
     'source_status_id_str': '1506609278311972871',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1506609218547335177,
     'id_str': '1506609218547335177',
     'indices': [184, 207],
     'media_url': 'http://pbs.twimg.com/media/FOiNJscXEAAKfhf.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOiNJscXEAAKfhf.jpg',
     'url': 'https://t.co/14wgXW6Fvc',
     'display_url': 'pic.twitter.com/14wgXW6Fvc',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1506609278311972871/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1506609278311972871,
     'source_status_id_str': '1506609278311972871',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 25792,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1506609218547335177/pl/MVeRI_paCyNXF6yQ.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1506609218547335177/vid/720x720/Isd1jUL9BLlbfFY9.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1506609218547335177/vid/540x540/_lm3Qd7xcc56ExW-.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1506609218547335177/vid/320x320/4IKHbIWEv-jL_aFT.mp4?tag=14'}]},
     'additional_media_info': {'title': 'The Affordable Care Act: 12 Years Later',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1267,
  'favorite_count': 8846,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 21 13:16:22 +0000 2022',
  'id': 1505896098849767429,
  'id_str': '1505896098849767429',
  'full_text': 'RT @POTUS: Judge Ketanji Brown Jackson is a brilliant legal mind with the utmost character and integrity. \n \nShe deserves to be confirmed a…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 21 13:13:55 +0000 2022',
   'id': 1505895480743628802,
   'id_str': '1505895480743628802',
   'full_text': 'Judge Ketanji Brown Jackson is a brilliant legal mind with the utmost character and integrity. \n \nShe deserves to be confirmed as the next Justice of the Supreme Court. https://t.co/a15I2VkbLb',
   'truncated': False,
   'display_text_range': [0, 168],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1505895416872718348,
      'id_str': '1505895416872718348',
      'indices': [169, 192],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1505895416872718348/img/QJSOC3uklUcdB2i-.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1505895416872718348/img/QJSOC3uklUcdB2i-.jpg',
      'url': 'https://t.co/a15I2VkbLb',
      'display_url': 'pic.twitter.com/a15I2VkbLb',
      'expanded_url': 'https://twitter.com/POTUS/status/1505895480743628802/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1505895416872718348,
      'id_str': '1505895416872718348',
      'indices': [169, 192],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1505895416872718348/img/QJSOC3uklUcdB2i-.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1505895416872718348/img/QJSOC3uklUcdB2i-.jpg',
      'url': 'https://t.co/a15I2VkbLb',
      'display_url': 'pic.twitter.com/a15I2VkbLb',
      'expanded_url': 'https://twitter.com/POTUS/status/1505895480743628802/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 48673,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1505895416872718348/vid/720x720/bE7XF08T7GooM-lU.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1505895416872718348/vid/540x540/dlgywrE-7iioVJJE.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1505895416872718348/pl/Ql7p2zoprzDizw1S.m3u8?tag=14&container=fmp4'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1505895416872718348/vid/320x320/B6VoLShinnKivTKd.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7077,
   'favorite_count': 40788,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7077,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 20 16:49:00 +0000 2022',
  'id': 1505587220954206221,
  'id_str': '1505587220954206221',
  'full_text': 'Folks, we’re investing $65 billion from our Bipartisan Infrastructure Law to deliver high-speed internet everywhere in America.\n\nWe can’t be a country where a mother has to take her kid to the McDonald’s parking lot to access the internet to do their homework.',
  'truncated': False,
  'display_text_range': [0, 260],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4803,
  'favorite_count': 37663,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 20 15:36:29 +0000 2022',
  'id': 1505568972741267460,
  'id_str': '1505568972741267460',
  'full_text': 'RT @POTUS: Jill and I want to extend our best wishes to all who are celebrating Nowruz around the world. The Nowruz holiday means gathering…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Mar 20 15:33:35 +0000 2022',
   'id': 1505568240638078981,
   'id_str': '1505568240638078981',
   'full_text': 'Jill and I want to extend our best wishes to all who are celebrating Nowruz around the world. The Nowruz holiday means gathering at the Nowruz table to give thanks for loved ones, reflect on your blessings, and welcome all the possibilities of a new season. Happy Nowruz!',
   'truncated': False,
   'display_text_range': [0, 271],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5260,
   'favorite_count': 43735,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5260,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 18 15:11:01 +0000 2022',
  'id': 1504837788004405253,
  'id_str': '1504837788004405253',
  'full_text': '28 years ago, we passed the Violence Against Women Act to provide protection against domestic violence, stalking, sexual assault—and to support survivors. \n\nThis week, I signed legislation to reauthorize and strengthen the Violence Against Women Act.',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3667,
  'favorite_count': 25597,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 17 21:36:01 +0000 2022',
  'id': 1504572286258532358,
  'id_str': '1504572286258532358',
  'full_text': 'Oil prices are decreasing. Gas prices should too. https://t.co/JwIMdOiAJ8',
  'truncated': False,
  'display_text_range': [0, 49],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1504572284018774022,
     'id_str': '1504572284018774022',
     'indices': [50, 73],
     'media_url': 'http://pbs.twimg.com/media/FOFQhU_WUAYc_ic.png',
     'media_url_https': 'https://pbs.twimg.com/media/FOFQhU_WUAYc_ic.png',
     'url': 'https://t.co/JwIMdOiAJ8',
     'display_url': 'pic.twitter.com/JwIMdOiAJ8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1504572286258532358/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1504572284018774022,
     'id_str': '1504572284018774022',
     'indices': [50, 73],
     'media_url': 'http://pbs.twimg.com/media/FOFQhU_WUAYc_ic.png',
     'media_url_https': 'https://pbs.twimg.com/media/FOFQhU_WUAYc_ic.png',
     'url': 'https://t.co/JwIMdOiAJ8',
     'display_url': 'pic.twitter.com/JwIMdOiAJ8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1504572286258532358/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7425,
  'favorite_count': 45502,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 17 20:00:15 +0000 2022',
  'id': 1504548185896853511,
  'id_str': '1504548185896853511',
  'full_text': 'The world is united in our support for Ukraine and our determination to make Putin pay a very heavy price. \n\nAmerica is leading this effort together with allies and partners—providing enormous levels of security and humanitarian assistance.\nhttps://t.co/nQQTnPsVVG',
  'truncated': False,
  'display_text_range': [0, 264],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1504223536180781064,
     'id_str': '1504223536180781064',
     'indices': [241, 264],
     'media_url': 'http://pbs.twimg.com/media/FOATX4kXwAcbtY1.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOATX4kXwAcbtY1.jpg',
     'url': 'https://t.co/nQQTnPsVVG',
     'display_url': 'pic.twitter.com/nQQTnPsVVG',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1504223581466763279/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1504223581466763279,
     'source_status_id_str': '1504223581466763279',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1504223536180781064,
     'id_str': '1504223536180781064',
     'indices': [241, 264],
     'media_url': 'http://pbs.twimg.com/media/FOATX4kXwAcbtY1.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOATX4kXwAcbtY1.jpg',
     'url': 'https://t.co/nQQTnPsVVG',
     'display_url': 'pic.twitter.com/nQQTnPsVVG',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1504223581466763279/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1504223581466763279,
     'source_status_id_str': '1504223581466763279',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 18518,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1504223536180781064/vid/540x540/i9i-fTFEw_H80PV1.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1504223536180781064/pl/Lv3tkX32sJl3sbB4.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1504223536180781064/vid/720x720/N186cWst9fesFxOT.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1504223536180781064/vid/320x320/mUMznWVoLgv80aVY.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1216,
  'favorite_count': 6794,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 17 18:26:01 +0000 2022',
  'id': 1504524470442201100,
  'id_str': '1504524470442201100',
  'full_text': 'Everything between Ireland and the United States runs deep—our joys, our sorrows, our passion, our drive, and our unrelenting optimism and hope.',
  'truncated': False,
  'display_text_range': [0, 144],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1903,
  'favorite_count': 18195,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 17 17:06:15 +0000 2022',
  'id': 1504504396519981059,
  'id_str': '1504504396519981059',
  'full_text': 'Let there be no doubt, no uncertainty, no question, America stands with the forces of freedom. We always have and we always will. https://t.co/bmxSmeVuT4',
  'truncated': False,
  'display_text_range': [0, 129],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1504504342837186561,
     'id_str': '1504504342837186561',
     'indices': [130, 153],
     'media_url': 'http://pbs.twimg.com/media/FOESxcyXEAIwEx4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOESxcyXEAIwEx4.jpg',
     'url': 'https://t.co/bmxSmeVuT4',
     'display_url': 'pic.twitter.com/bmxSmeVuT4',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1504504396519981059/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1504504342837186561,
     'id_str': '1504504342837186561',
     'indices': [130, 153],
     'media_url': 'http://pbs.twimg.com/media/FOESxcyXEAIwEx4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FOESxcyXEAIwEx4.jpg',
     'url': 'https://t.co/bmxSmeVuT4',
     'display_url': 'pic.twitter.com/bmxSmeVuT4',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1504504396519981059/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 42842,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1504504342837186561/vid/320x320/Ke7x2TZR0-nf_e02.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1504504342837186561/vid/720x720/TaAYIe9qSN-dqw2b.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1504504342837186561/pl/bBrVz1610V4Jq7X4.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1504504342837186561/vid/540x540/_80PxLZffBcSJ7ee.mp4?tag=14'}]},
     'additional_media_info': {'title': 'America stands with the forces of freedom',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1846,
  'favorite_count': 11197,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 17 14:33:00 +0000 2022',
  'id': 1504465833296379911,
  'id_str': '1504465833296379911',
  'full_text': 'Today we celebrate the deep affection we have for Ireland and the people of Ireland. That includes millions of Americans like my great-great-grandfather, great-grandfather, and grandfather, all of whom were Irish Americans on both sides of the family. Happy St. Patrick’s Day!',
  'truncated': False,
  'display_text_range': [0, 276],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2160,
  'favorite_count': 20454,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 16 14:18:00 +0000 2022',
  'id': 1504099669865025537,
  'id_str': '1504099669865025537',
  'full_text': "The Bipartisan Government Funding Bill includes $13.6B to address Russia's invasion of Ukraine and the impact on surrounding countries.\n\nPutin's aggression against Ukraine has united people across America, united our two parties in Congress, and united the freedom-loving world.",
  'truncated': False,
  'display_text_range': [0, 278],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2271,
  'favorite_count': 15077,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 16 00:36:00 +0000 2022',
  'id': 1503892806397485058,
  'id_str': '1503892806397485058',
  'full_text': 'There are over 200,000 kids in America and many more adults with Type 1 diabetes needing insulin every day.\n\nIt costs $10 to make a vial of insulin, yet the average cost can be up to $1,000 a month.\n\nLet’s cap the cost of insulin at $35 a month.',
  'truncated': False,
  'display_text_range': [0, 245],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7332,
  'favorite_count': 54730,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 15 17:10:01 +0000 2022',
  'id': 1503780571813720068,
  'id_str': '1503780571813720068',
  'full_text': 'Not only has Infrastructure Week finally arrived, but we’re talking about an infrastructure decade.  \n \nFolks, we’ve already authorized 4,000 projects all across the country—including 1,500 bridges in disrepair—and they’re starting repairs this year.',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2503,
  'favorite_count': 15147,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 15 14:21:30 +0000 2022',
  'id': 1503738162652319744,
  'id_str': '1503738162652319744',
  'full_text': 'RT @POTUS: My Administration is committed to closing the gender pay gap ensuring that all Americans have a fair and equal opportunity to ge…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 15 13:51:17 +0000 2022',
   'id': 1503730558924464132,
   'id_str': '1503730558924464132',
   'full_text': 'My Administration is committed to closing the gender pay gap ensuring that all Americans have a fair and equal opportunity to get ahead, so that one day soon we can render Equal Pay Day a relic of the past. https://t.co/nhN1rsiFix',
   'truncated': False,
   'display_text_range': [0, 230],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/nhN1rsiFix',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/presidential-actions/2022/03/14/a-proclamation-on-national-equal-pay-day-2022/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [207, 230]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2151,
   'favorite_count': 11612,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2151,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 14 20:25:00 +0000 2022',
  'id': 1503467252682743810,
  'id_str': '1503467252682743810',
  'full_text': 'As my mother would say, “God love them.”\nhttps://t.co/XlDuH52PAi',
  'truncated': False,
  'display_text_range': [0, 64],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1502789036166971394,
     'id_str': '1502789036166971394',
     'indices': [41, 64],
     'media_url': 'http://pbs.twimg.com/media/FNr677OUYAMEH6b.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNr677OUYAMEH6b.jpg',
     'url': 'https://t.co/XlDuH52PAi',
     'display_url': 'pic.twitter.com/XlDuH52PAi',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1502789340031815680/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1502789340031815680,
     'source_status_id_str': '1502789340031815680',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1502789036166971394,
     'id_str': '1502789036166971394',
     'indices': [41, 64],
     'media_url': 'http://pbs.twimg.com/media/FNr677OUYAMEH6b.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNr677OUYAMEH6b.jpg',
     'url': 'https://t.co/XlDuH52PAi',
     'display_url': 'pic.twitter.com/XlDuH52PAi',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1502789340031815680/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1502789340031815680,
     'source_status_id_str': '1502789340031815680',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 35935,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502789036166971394/vid/320x320/xpsV9-20ZHY3FTgE.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502789036166971394/vid/540x540/Ohb3k5coAm-1bBr9.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502789036166971394/vid/720x720/fOCxfmZfnO12a1UD.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1502789036166971394/pl/4Zrk0pvHHvHj1C1l.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'President Biden on the Bipartisan Infrastructure Law',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1442,
  'favorite_count': 9286,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 14 16:47:01 +0000 2022',
  'id': 1503412393795371018,
  'id_str': '1503412393795371018',
  'full_text': 'The American people are united, the world is united, and we stand with the people of Ukraine. \n\nWe will not let autocrats and would-be emperors dictate the direction of the world.',
  'truncated': False,
  'display_text_range': [0, 179],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6384,
  'favorite_count': 49527,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 14 15:15:22 +0000 2022',
  'id': 1503389329250562051,
  'id_str': '1503389329250562051',
  'full_text': 'RT @POTUS: We are continuing the close cooperation with Allies and partners to make sure that the Ukrainian people can defend their nation.…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 14 15:01:05 +0000 2022',
   'id': 1503385736246177797,
   'id_str': '1503385736246177797',
   'full_text': 'We are continuing the close cooperation with Allies and partners to make sure that the Ukrainian people can defend their nation.\n \nThe United States has committed more than $1.2 billion in security assistance to Ukraine over the last year.',
   'truncated': False,
   'display_text_range': [0, 239],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4849,
   'favorite_count': 32894,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4849,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 13 16:51:00 +0000 2022',
  'id': 1503051009911930883,
  'id_str': '1503051009911930883',
  'full_text': 'Before I took office, people were hurting and we had to act. We passed the American Rescue Plan without a single, solitary Republican vote. \n\nFew pieces of legislation in our history have done more to lift the country out of crisis.',
  'truncated': False,
  'display_text_range': [0, 232],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5467,
  'favorite_count': 37455,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 12 22:44:00 +0000 2022',
  'id': 1502777456952066057,
  'id_str': '1502777456952066057',
  'full_text': 'Putin was counting on a divided NATO, a divided West and quite frankly, a divided America.\n\nBut he got none of that.',
  'truncated': False,
  'display_text_range': [0, 116],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 12847,
  'favorite_count': 117070,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 12 21:15:43 +0000 2022',
  'id': 1502755237609811969,
  'id_str': '1502755237609811969',
  'full_text': 'We will not let autocrats and would-be emperors dictate the direction of the world. https://t.co/HH7gJazdmP',
  'truncated': False,
  'display_text_range': [0, 83],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1502755063005122561,
     'id_str': '1502755063005122561',
     'indices': [84, 107],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1502755063005122561/img/yAbxunnh_KVRBw3t.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1502755063005122561/img/yAbxunnh_KVRBw3t.jpg',
     'url': 'https://t.co/HH7gJazdmP',
     'display_url': 'pic.twitter.com/HH7gJazdmP',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1502755237609811969/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1502755063005122561,
     'id_str': '1502755063005122561',
     'indices': [84, 107],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1502755063005122561/img/yAbxunnh_KVRBw3t.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1502755063005122561/img/yAbxunnh_KVRBw3t.jpg',
     'url': 'https://t.co/HH7gJazdmP',
     'display_url': 'pic.twitter.com/HH7gJazdmP',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1502755237609811969/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 23023,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1502755063005122561/pl/WtqYa4gDx204L4hC.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502755063005122561/vid/320x320/yuby8IcpICvEtFAT.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502755063005122561/vid/720x720/HsD8-C0oNju3Kmhk.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502755063005122561/vid/540x540/rh1UY_CdcMrawtWY.mp4?tag=14'}]},
     'additional_media_info': {'title': 'We stand with the people of Ukraine',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3637,
  'favorite_count': 23072,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 12 01:12:00 +0000 2022',
  'id': 1502452314724085766,
  'id_str': '1502452314724085766',
  'full_text': 'Few pieces of legislation have done more to lift us out of this crisis than the American Rescue Plan.\n\nIt fueled our efforts to vaccinate the nation.\nDelivered immediate economic relief for millions of Americans.\nHelped cut health insurance costs.\n\nIt was just the beginning.',
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1438,
  'favorite_count': 8507,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 11 23:47:00 +0000 2022',
  'id': 1502430923614302218,
  'id_str': '1502430923614302218',
  'full_text': 'Thanks to the American Rescue Plan, we lifted this country out of crisis and added more jobs to the economy in a single year than any other administration.',
  'truncated': False,
  'display_text_range': [0, 155],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3963,
  'favorite_count': 31449,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 11 22:21:00 +0000 2022',
  'id': 1502409281194369027,
  'id_str': '1502409281194369027',
  'full_text': "Unlike the $2 trillion tax cut passed in the previous administration that benefitted the top 1% of Americans, the American Rescue Plan helped working people and left no one behind.\n\nIt's why our economy has recovered faster than other major global economies.",
  'truncated': False,
  'display_text_range': [0, 258],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3072,
  'favorite_count': 16778,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 11 21:02:01 +0000 2022',
  'id': 1502389402244460550,
  'id_str': '1502389402244460550',
  'full_text': 'One year later, American Rescue Plan is helping millions of families on Affordable Care Act plans save $2,400 a year on their health premiums. \n\nLet’s make those savings permanent.',
  'truncated': False,
  'display_text_range': [0, 180],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1649,
  'favorite_count': 10511,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 11 20:17:00 +0000 2022',
  'id': 1502378076302450691,
  'id_str': '1502378076302450691',
  'full_text': 'When Vice President @KamalaHarris and I took office, there was no national plan to get Americans vaccinated and jump-start our economy.\n\nThe American Rescue Plan helped us get 500 million shots in arms and set off the greatest single year of job growth in our history.',
  'truncated': False,
  'display_text_range': [0, 268],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'KamalaHarris',
     'name': 'Kamala Harris',
     'id': 30354991,
     'id_str': '30354991',
     'indices': [20, 33]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1850,
  'favorite_count': 10942,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 11 18:33:00 +0000 2022',
  'id': 1502351904222990343,
  'id_str': '1502351904222990343',
  'full_text': 'One year ago today, I signed the American Rescue Plan into law. It helped deliver: \n\n—500 million shots in arms\n—The fastest single year of job growth in our history\n—A record decline in unemployment two years ahead of predictions\n\nAmerica is getting back on track.',
  'truncated': False,
  'display_text_range': [0, 265],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1800,
  'favorite_count': 11137,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 11 17:10:22 +0000 2022',
  'id': 1502331108578496516,
  'id_str': '1502331108578496516',
  'full_text': 'We are stronger today than we were a year ago, thanks to the American Rescue Plan. https://t.co/RRj1UIUeyp',
  'truncated': False,
  'display_text_range': [0, 82],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1502331022838534147,
     'id_str': '1502331022838534147',
     'indices': [83, 106],
     'media_url': 'http://pbs.twimg.com/media/FNlaLdHXsAMiB1R.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNlaLdHXsAMiB1R.jpg',
     'url': 'https://t.co/RRj1UIUeyp',
     'display_url': 'pic.twitter.com/RRj1UIUeyp',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1502331108578496516/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1502331022838534147,
     'id_str': '1502331022838534147',
     'indices': [83, 106],
     'media_url': 'http://pbs.twimg.com/media/FNlaLdHXsAMiB1R.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNlaLdHXsAMiB1R.jpg',
     'url': 'https://t.co/RRj1UIUeyp',
     'display_url': 'pic.twitter.com/RRj1UIUeyp',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1502331108578496516/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 54387,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502331022838534147/vid/320x320/6h1qqgMSYupoj4g9.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1502331022838534147/pl/jiGCQlQ2vceNctrI.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502331022838534147/vid/540x540/uSzCakh5Vbuag6cQ.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1502331022838534147/vid/720x720/IAGwVwmKIwfkOnK5.mp4?tag=14'}]},
     'additional_media_info': {'title': 'One year of the American Rescue Plan',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1175,
  'favorite_count': 6269,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 10 22:52:00 +0000 2022',
  'id': 1502054694964899842,
  'id_str': '1502054694964899842',
  'full_text': 'We are pushing for investments so we can manufacture more in America, strengthen our supply chains, and move goods to market at lower costs.\n\nAnd I’m pressing Congress to pass my plan to lower the cost of essentials like prescription drugs and energy.',
  'truncated': False,
  'display_text_range': [0, 251],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2627,
  'favorite_count': 17145,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 10 21:17:00 +0000 2022',
  'id': 1502030787704672256,
  'id_str': '1502030787704672256',
  'full_text': 'With all the bright spots in our economy—record job growth and higher wages—too many families are struggling to keep up with the bills. Inflation is robbing them of the gains they might otherwise feel. \n \nI get it. That’s why my top priority is getting prices under control.',
  'truncated': False,
  'display_text_range': [0, 274],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2274,
  'favorite_count': 14313,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 10 18:43:00 +0000 2022',
  'id': 1501992032419872768,
  'id_str': '1501992032419872768',
  'full_text': 'A large contributor to inflation this month was an increase in gas and energy prices as markets reacted to Putin’s aggressive actions. \n\nI know that higher prices impact a family’s budget, which is why I am fighting to bring down the everyday prices that are squeezing Americans.',
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3493,
  'favorite_count': 27360,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 10 16:47:47 +0000 2022',
  'id': 1501963036428587017,
  'id_str': '1501963036428587017',
  'full_text': 'RT @POTUS: Today’s inflation report is a reminder that Americans’ budgets are being stretched by price increases and families are starting…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 10 16:35:01 +0000 2022',
   'id': 1501959821368737792,
   'id_str': '1501959821368737792',
   'full_text': 'Today’s inflation report is a reminder that Americans’ budgets are being stretched by price increases and families are starting to feel the impacts of Putin’s price hike. But I am fighting to bring down the everyday prices that are squeezing Americans. https://t.co/PVJqBeTvQS',
   'truncated': False,
   'display_text_range': [0, 276],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/PVJqBeTvQS',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/statements-releases/2022/03/10/statement-by-president-biden-on-consumer-price-index-in-february/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [253, 276]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2260,
   'favorite_count': 12745,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2260,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 09 20:20:01 +0000 2022',
  'id': 1501654058213519367,
  'id_str': '1501654058213519367',
  'full_text': "Veterans are the backbone, the spine, and sinew of who we are in this country.\n\nOne percent of you serves. The rest of us deserve to treat you with the dignity and respect in service that you deserve. You're the best of us, and we owe you.",
  'truncated': False,
  'display_text_range': [0, 239],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2530,
  'favorite_count': 17721,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 09 16:08:01 +0000 2022',
  'id': 1501590638663458819,
  'id_str': '1501590638663458819',
  'full_text': "We're going to continue to support the brave Ukrainian people as they fight for their country.\n\nI call on Congress to pass the $12 billion Ukraine assistance package.",
  'truncated': False,
  'display_text_range': [0, 166],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5904,
  'favorite_count': 52847,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 09 02:03:00 +0000 2022',
  'id': 1501377985592582156,
  'id_str': '1501377985592582156',
  'full_text': "I'm going to do everything I can to minimize Putin's price hike here at home. \nhttps://t.co/UT1V4DIuNd",
  'truncated': False,
  'display_text_range': [0, 102],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1501274055030153223,
     'id_str': '1501274055030153223',
     'indices': [79, 102],
     'media_url': 'http://pbs.twimg.com/media/FNWY4hUWQA0szqZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNWY4hUWQA0szqZ.jpg',
     'url': 'https://t.co/UT1V4DIuNd',
     'display_url': 'pic.twitter.com/UT1V4DIuNd',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1501274152107446273/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1501274152107446273,
     'source_status_id_str': '1501274152107446273',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1501274055030153223,
     'id_str': '1501274055030153223',
     'indices': [79, 102],
     'media_url': 'http://pbs.twimg.com/media/FNWY4hUWQA0szqZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNWY4hUWQA0szqZ.jpg',
     'url': 'https://t.co/UT1V4DIuNd',
     'display_url': 'pic.twitter.com/UT1V4DIuNd',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1501274152107446273/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1501274152107446273,
     'source_status_id_str': '1501274152107446273',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 27494,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1501274055030153223/vid/320x320/ieNQr4xvJbQ8834N.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1501274055030153223/pl/YgT2lGSvUd5g7hWS.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1501274055030153223/vid/540x540/KjZan5l5HHBJ4HJy.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1501274055030153223/vid/720x720/L8DuT2vufasoVDWJ.mp4?tag=14'}]},
     'additional_media_info': {'title': "President Biden is committed to protecting American families from Putin's price hike.",
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2230,
  'favorite_count': 15534,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 08 22:40:00 +0000 2022',
  'id': 1501326899397775365,
  'id_str': '1501326899397775365',
  'full_text': "We're banning all imports of Russian oil and gas and energy.\n\nThat means Russian oil will no longer be acceptable at U.S. ports and the American people will deal another powerful blow to Putin.",
  'truncated': False,
  'display_text_range': [0, 193],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6962,
  'favorite_count': 70430,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 08 16:20:03 +0000 2022',
  'id': 1501231281283252224,
  'id_str': '1501231281283252224',
  'full_text': 'On International Women’s Day and every day, let us recognize that all of us have a better future when women and girls can reach their full potential—and together, let’s renew our efforts to advance dignity, equality, and limitless possibilities for all.',
  'truncated': False,
  'display_text_range': [0, 253],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2384,
  'favorite_count': 17719,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 07 20:25:12 +0000 2022',
  'id': 1500930585900027915,
  'id_str': '1500930585900027915',
  'full_text': 'The American Rescue Plan has resulted in historic economic growth. https://t.co/etuZgshaJE',
  'truncated': False,
  'display_text_range': [0, 66],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1500930539045466113,
     'id_str': '1500930539045466113',
     'indices': [67, 90],
     'media_url': 'http://pbs.twimg.com/media/FNRgaTwX0AQ3WYa.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNRgaTwX0AQ3WYa.jpg',
     'url': 'https://t.co/etuZgshaJE',
     'display_url': 'pic.twitter.com/etuZgshaJE',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1500930585900027915/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1500930539045466113,
     'id_str': '1500930539045466113',
     'indices': [67, 90],
     'media_url': 'http://pbs.twimg.com/media/FNRgaTwX0AQ3WYa.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNRgaTwX0AQ3WYa.jpg',
     'url': 'https://t.co/etuZgshaJE',
     'display_url': 'pic.twitter.com/etuZgshaJE',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1500930585900027915/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 39806,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500930539045466113/vid/720x720/xCaXdygguoRwCKov.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1500930539045466113/pl/yr4KgtXHjrVyJmY4.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500930539045466113/vid/540x540/rBNcF0d0qplKrga_.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500930539045466113/vid/320x320/pGSmb-ybFsebe9Bm.mp4?tag=14'}]},
     'additional_media_info': {'title': 'The American Rescue Plan ',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1337,
  'favorite_count': 8540,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 07 16:34:01 +0000 2022',
  'id': 1500872406675644417,
  'id_str': '1500872406675644417',
  'full_text': 'It costs pharmaceutical companies $10 to make a vial of insulin, yet drug companies can charge families up to 30x that amount.\n\nLet’s cut the cost of insulin to $35 a month.',
  'truncated': False,
  'display_text_range': [0, 173],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6850,
  'favorite_count': 53916,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 07 02:00:05 +0000 2022',
  'id': 1500652477087105026,
  'id_str': '1500652477087105026',
  'full_text': 'Last year has been the best year for manufacturing jobs and trucking jobs since 1994.',
  'truncated': False,
  'display_text_range': [0, 85],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3981,
  'favorite_count': 32910,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 06 22:36:00 +0000 2022',
  'id': 1500601116047953923,
  'id_str': '1500601116047953923',
  'full_text': 'Let’s cap the cost of insulin at $35 a month.',
  'truncated': False,
  'display_text_range': [0, 45],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9638,
  'favorite_count': 110202,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 06 19:54:00 +0000 2022',
  'id': 1500560348688101381,
  'id_str': '1500560348688101381',
  'full_text': 'One of the most serious constitutional responsibilities a president has is nominating someone to serve on the U.S. Supreme Court.\n \nJudge Ketanji Brown Jackson is one of our nation’s top legal minds who will continue Justice Breyer’s legacy of excellence.',
  'truncated': False,
  'display_text_range': [0, 255],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2088,
  'favorite_count': 15711,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 06 17:40:00 +0000 2022',
  'id': 1500526626005737473,
  'id_str': '1500526626005737473',
  'full_text': 'The onslaught of state legislation targeting transgender Americans and their families is wrong. \n\nLet’s finally get the bipartisan Equality Act to my desk.',
  'truncated': False,
  'display_text_range': [0, 155],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4234,
  'favorite_count': 29386,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 06 15:19:00 +0000 2022',
  'id': 1500491140415565828,
  'id_str': '1500491140415565828',
  'full_text': 'RT @POTUS: On Sunday, March 7, 1965, time stopped and blood spilled as brave and righteous Americans sought to cross a bridge named after a…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Mar 06 15:09:47 +0000 2022',
   'id': 1500488822370537480,
   'id_str': '1500488822370537480',
   'full_text': 'On Sunday, March 7, 1965, time stopped and blood spilled as brave and righteous Americans sought to cross a bridge named after a Klansman in Selma, Alabama to reach the other side of justice.\n\nRead my full statement on the anniversary of Bloody Sunday: https://t.co/ZEy7JLrTnY',
   'truncated': False,
   'display_text_range': [0, 276],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/ZEy7JLrTnY',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/statements-releases/2022/03/06/statement-by-president-biden-on-the-anniversary-of-bloody-sunday/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [253, 276]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4388,
   'favorite_count': 20884,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4388,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 05 22:21:09 +0000 2022',
  'id': 1500234992290603016,
  'id_str': '1500234992290603016',
  'full_text': 'My message to those suffering from addiction: You are not alone. \n\nWe are going to beat the opioid epidemic. https://t.co/W4nYeNJMQM',
  'truncated': False,
  'display_text_range': [0, 108],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1500234954827042821,
     'id_str': '1500234954827042821',
     'indices': [109, 132],
     'media_url': 'http://pbs.twimg.com/media/FNHnxZpXIAIPa7u.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNHnxZpXIAIPa7u.jpg',
     'url': 'https://t.co/W4nYeNJMQM',
     'display_url': 'pic.twitter.com/W4nYeNJMQM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1500234992290603016/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1500234954827042821,
     'id_str': '1500234954827042821',
     'indices': [109, 132],
     'media_url': 'http://pbs.twimg.com/media/FNHnxZpXIAIPa7u.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNHnxZpXIAIPa7u.jpg',
     'url': 'https://t.co/W4nYeNJMQM',
     'display_url': 'pic.twitter.com/W4nYeNJMQM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1500234992290603016/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 11478,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500234954827042821/vid/720x720/8lAgrbYLQFFs7NHM.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1500234954827042821/pl/FtYhtnut4kPsVymf.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500234954827042821/vid/320x320/lHsyP9Ii9V4vOW_w.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500234954827042821/vid/540x540/04G_R-Zx7Uq0sgmI.mp4?tag=14'}]},
     'additional_media_info': {'title': 'We are going to beat the opioid epidemic',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1356,
  'favorite_count': 10059,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 05 17:05:09 +0000 2022',
  'id': 1500155467854716934,
  'id_str': '1500155467854716934',
  'full_text': 'Capitalism without competition is exploitation. https://t.co/wBlLZmXZwM',
  'truncated': False,
  'display_text_range': [0, 47],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1500155431745949702,
     'id_str': '1500155431745949702',
     'indices': [48, 71],
     'media_url': 'http://pbs.twimg.com/media/FNGfcgQXwAAVm-Q.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNGfcgQXwAAVm-Q.jpg',
     'url': 'https://t.co/wBlLZmXZwM',
     'display_url': 'pic.twitter.com/wBlLZmXZwM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1500155467854716934/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1500155431745949702,
     'id_str': '1500155431745949702',
     'indices': [48, 71],
     'media_url': 'http://pbs.twimg.com/media/FNGfcgQXwAAVm-Q.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FNGfcgQXwAAVm-Q.jpg',
     'url': 'https://t.co/wBlLZmXZwM',
     'display_url': 'pic.twitter.com/wBlLZmXZwM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1500155467854716934/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 8975,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1500155431745949702/pl/-8s0T9j4ao-7pKQw.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500155431745949702/vid/320x320/0EiesI4x4BNxEMJ6.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500155431745949702/vid/540x540/eVnpDH1qwPsdSOQ9.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1500155431745949702/vid/720x720/OVsdjlLtL1_KfLJ3.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Capitalism without competition is exploitation. ',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2332,
  'favorite_count': 15096,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'fr'},
 {'created_at': 'Fri Mar 04 23:45:01 +0000 2022',
  'id': 1499893707201466368,
  'id_str': '1499893707201466368',
  'full_text': 'In February, the economy created 678,000 jobs, following the greatest year of job growth in American history and the fastest economic growth in almost 40 years.',
  'truncated': False,
  'display_text_range': [0, 160],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2848,
  'favorite_count': 18407,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 04 23:02:00 +0000 2022',
  'id': 1499882884227862539,
  'id_str': '1499882884227862539',
  'full_text': 'My plan to fight inflation will lower your everyday costs and reduce the deficit. \nhttps://t.co/3fudH3s4Ck',
  'truncated': False,
  'display_text_range': [0, 106],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1498862801904881665,
     'id_str': '1498862801904881665',
     'indices': [83, 106],
     'media_url': 'http://pbs.twimg.com/media/FM0H1YzXMAIboUZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FM0H1YzXMAIboUZ.jpg',
     'url': 'https://t.co/3fudH3s4Ck',
     'display_url': 'pic.twitter.com/3fudH3s4Ck',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1498862869181616131/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1498862869181616131,
     'source_status_id_str': '1498862869181616131',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1498862801904881665,
     'id_str': '1498862801904881665',
     'indices': [83, 106],
     'media_url': 'http://pbs.twimg.com/media/FM0H1YzXMAIboUZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FM0H1YzXMAIboUZ.jpg',
     'url': 'https://t.co/3fudH3s4Ck',
     'display_url': 'pic.twitter.com/3fudH3s4Ck',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1498862869181616131/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1498862869181616131,
     'source_status_id_str': '1498862869181616131',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 43977,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1498862801904881665/pl/Ewk01TUeocpXPsGQ.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1498862801904881665/vid/540x540/5J1zcpZbqvzdVP4r.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1498862801904881665/vid/320x320/0fEq3s9NbQJpMS-9.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1498862801904881665/vid/720x720/vyzTJikv6boZ2PPJ.mp4?tag=14'}]},
     'additional_media_info': {'title': ' Lower your cost, not your wages.',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1098,
  'favorite_count': 7462,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 04 21:41:00 +0000 2022',
  'id': 1499862500581511182,
  'id_str': '1499862500581511182',
  'full_text': 'Too many families are still struggling with higher costs. I get it. Our top priority must be getting prices under control. That’s why we’re going to create more jobs that you can earn a living, a good living, right here in America, and invest in infrastructure and innovation.',
  'truncated': False,
  'display_text_range': [0, 276],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2759,
  'favorite_count': 21242,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 04 17:15:03 +0000 2022',
  'id': 1499795571531526147,
  'id_str': '1499795571531526147',
  'full_text': 'Since I took office, the economy has created 7.4 million jobs. That’s 7.4 million jobs providing families with dignity and a little more breathing room. \n\nWe are building a better America.',
  'truncated': False,
  'display_text_range': [0, 188],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4193,
  'favorite_count': 33475,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 04 14:31:07 +0000 2022',
  'id': 1499754314281238529,
  'id_str': '1499754314281238529',
  'full_text': 'RT @POTUS: Our economy has now added 7.4 million jobs since I took office. 678,000 jobs added just last month. And unemployment is down to…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 04 14:30:10 +0000 2022',
   'id': 1499754075356864513,
   'id_str': '1499754075356864513',
   'full_text': 'Our economy has now added 7.4 million jobs since I took office. 678,000 jobs added just last month. And unemployment is down to 3.8%.\n \nThis is what Building a Better America looks like.',
   'truncated': False,
   'display_text_range': [0, 186],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7545,
   'favorite_count': 46274,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7545,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 04 00:36:13 +0000 2022',
  'id': 1499544204309147648,
  'id_str': '1499544204309147648',
  'full_text': 'To the Russian oligarchs and corrupt leaders who have bilked billions of dollars off this violent regime: no more. https://t.co/tyHE8V4gIa',
  'truncated': False,
  'display_text_range': [0, 114],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1499544153138601990,
     'id_str': '1499544153138601990',
     'indices': [115, 138],
     'media_url': 'http://pbs.twimg.com/media/FM9zgSpXsA0UDHj.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FM9zgSpXsA0UDHj.jpg',
     'url': 'https://t.co/tyHE8V4gIa',
     'display_url': 'pic.twitter.com/tyHE8V4gIa',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1499544204309147648/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1499544153138601990,
     'id_str': '1499544153138601990',
     'indices': [115, 138],
     'media_url': 'http://pbs.twimg.com/media/FM9zgSpXsA0UDHj.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FM9zgSpXsA0UDHj.jpg',
     'url': 'https://t.co/tyHE8V4gIa',
     'display_url': 'pic.twitter.com/tyHE8V4gIa',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1499544204309147648/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 30730,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1499544153138601990/vid/540x540/M-yYG0_wnD_gBrYr.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1499544153138601990/vid/720x720/qvjpu-x_P6ZKod-3.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1499544153138601990/vid/320x320/8oLp17Vglaq6EUJD.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1499544153138601990/pl/yknLZDcN0wPwasTF.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': "President Biden condemns Russia's aggression",
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1965,
  'favorite_count': 13023,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 03 22:29:32 +0000 2022',
  'id': 1499512326646550531,
  'id_str': '1499512326646550531',
  'full_text': 'RT @POTUS: In my State of the Union Address, I said the United States is going after the crimes of Russian oligarchs.\n \nToday, we’re adding…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 03 19:25:11 +0000 2022',
   'id': 1499465930706980866,
   'id_str': '1499465930706980866',
   'full_text': 'In my State of the Union Address, I said the United States is going after the crimes of Russian oligarchs.\n \nToday, we’re adding dozens of names to the list — and banning travel to America by more than 50 Russian oligarchs, their families, and close associates.',
   'truncated': False,
   'display_text_range': [0, 261],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9906,
   'favorite_count': 66984,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9906,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 03 18:15:03 +0000 2022',
  'id': 1499448280106819586,
  'id_str': '1499448280106819586',
  'full_text': "Last year, our economy created 369,000 American manufacturing jobs. Don’t tell me we can't be a manufacturing center again—we can.",
  'truncated': False,
  'display_text_range': [0, 130],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3676,
  'favorite_count': 30337,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 03:15:38 +0000 2022',
  'id': 1498859549859753987,
  'id_str': '1498859549859753987',
  'full_text': 'We are stronger today than we were a year ago. And we will be stronger a year from now than we are today. This is our moment to meet and overcome the challenges of our time.\n\nAnd we will.\n\nAs One People. One America.\n\nThe United States of America.',
  'truncated': False,
  'display_text_range': [0, 247],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2169,
  'favorite_count': 15421,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 03:13:04 +0000 2022',
  'id': 1498858901785264129,
  'id_str': '1498858901785264129',
  'full_text': 'I’m more optimistic about America today than I’ve been my whole life, because I see the future that’s within our grasp.\nBecause I know there is simply nothing beyond our capacity.',
  'truncated': False,
  'display_text_range': [0, 179],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2620,
  'favorite_count': 23984,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 03:09:04 +0000 2022',
  'id': 1498857896586752003,
  'id_str': '1498857896586752003',
  'full_text': 'Last month, I announced the plan to supercharge the Cancer Moonshot that President @BarackObama asked me to lead six years ago.\nOur goal is to cut the cancer death rate by at least 50% over the next 25 years.',
  'truncated': False,
  'display_text_range': [0, 208],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'BarackObama',
     'name': 'Barack Obama',
     'id': 813286,
     'id_str': '813286',
     'indices': [83, 95]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 854,
  'favorite_count': 6621,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 03:01:05 +0000 2022',
  'id': 1498855886948913154,
  'id_str': '1498855886948913154',
  'full_text': 'The onslaught of state laws targeting transgender Americans and their families is simply wrong.\n\nAs I said last year, especially to our younger transgender Americans: I will always have your back as your president, so you can be yourself and reach your God-given potential.',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1994,
  'favorite_count': 12743,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:52:41 +0000 2022',
  'id': 1498853773854363656,
  'id_str': '1498853773854363656',
  'full_text': 'RT @POTUS: Some are talking about “living with COVID-19.”\n \nTonight, I say that we will never just accept living with COVID-19. We will con…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 02 02:46:40 +0000 2022',
   'id': 1498852257789628417,
   'id_str': '1498852257789628417',
   'full_text': 'Some are talking about “living with COVID-19.”\n \nTonight, I say that we will never just accept living with COVID-19. We will continue to combat the virus as we do other diseases.\n \nBut thanks to the progress we have made this year, COVID-19 need no longer control our lives.',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1262,
   'favorite_count': 8237,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1262,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:45:02 +0000 2022',
  'id': 1498851847485931523,
  'id_str': '1498851847485931523',
  'full_text': 'As Wall Street firms take over more nursing homes, quality in those homes has gone down and costs have gone up.\nThat ends on my watch.\nMedicare is going to set higher standards for nursing homes and make sure your loved ones get the care they deserve and that they expect.',
  'truncated': False,
  'display_text_range': [0, 272],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 968,
  'favorite_count': 6444,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:35:08 +0000 2022',
  'id': 1498849358405591041,
  'id_str': '1498849358405591041',
  'full_text': 'My plan to fight inflation will lower your costs and lower the deficit.\n\n17 Nobel laureates in economics said my plan will ease long-term inflationary pressures.',
  'truncated': False,
  'display_text_range': [0, 161],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1274,
  'favorite_count': 8921,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:32:56 +0000 2022',
  'id': 1498848801506963457,
  'id_str': '1498848801506963457',
  'full_text': 'RT @POTUS: We need to level the playing field with China and other competitors. That’s why it’s so important to pass the Bipartisan Innovat…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 02 02:30:17 +0000 2022',
   'id': 1498848135141015554,
   'id_str': '1498848135141015554',
   'full_text': 'We need to level the playing field with China and other competitors. That’s why it’s so important to pass the Bipartisan Innovation Act. It will make record investments in emerging technologies, American manufacturing, and innovation.\n\nSend it to my desk. I’ll sign it.',
   'truncated': False,
   'display_text_range': [0, 269],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2051,
   'favorite_count': 12734,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2051,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:32:40 +0000 2022',
  'id': 1498848735798960130,
  'id_str': '1498848735798960130',
  'full_text': 'Ford is investing $11B to build electric vehicles—creating 11,000 jobs across the country.\n\nGM is making the largest investment in its history—$7B to build electric vehicles, creating 4,000 jobs in Michigan.',
  'truncated': False,
  'display_text_range': [0, 207],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3750,
  'favorite_count': 39416,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:28:12 +0000 2022',
  'id': 1498847613319323648,
  'id_str': '1498847613319323648',
  'full_text': 'Tonight, I’m announcing that this year we will start fixing over 65,000 miles of highway and 1,500 bridges in disrepair.',
  'truncated': False,
  'display_text_range': [0, 120],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3740,
  'favorite_count': 45728,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:26:29 +0000 2022',
  'id': 1498847180022505472,
  'id_str': '1498847180022505472',
  'full_text': 'We’re done talking about infrastructure weeks.\nWe’re going to have an infrastructure decade.\n\nIt is going to transform America.',
  'truncated': False,
  'display_text_range': [0, 127],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 800,
  'favorite_count': 6516,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:24:22 +0000 2022',
  'id': 1498846647576580097,
  'id_str': '1498846647576580097',
  'full_text': 'Unlike the $2 trillion tax cut passed in the previous administration that benefited the top 1% of Americans, the American Rescue Plan helped working people—and left no one behind.',
  'truncated': False,
  'display_text_range': [0, 179],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2298,
  'favorite_count': 14492,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:11:10 +0000 2022',
  'id': 1498843323703992325,
  'id_str': '1498843323703992325',
  'full_text': 'RT @POTUS: President Putin thought he could roll into Ukraine — and the world would roll over.\n \nInstead, he met a wall of strength he neve…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 02 02:10:25 +0000 2022',
   'id': 1498843134721150979,
   'id_str': '1498843134721150979',
   'full_text': 'President Putin thought he could roll into Ukraine — and the world would roll over.\n \nInstead, he met a wall of strength he never imagined.\n \nHe met the Ukrainian people.',
   'truncated': False,
   'display_text_range': [0, 170],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 14147,
   'favorite_count': 118064,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 14147,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 02 02:08:37 +0000 2022',
  'id': 1498842685028933642,
  'id_str': '1498842685028933642',
  'full_text': 'RT @POTUS: Tune in as I deliver the State of the Union address to a joint session of Congress. https://t.co/Kgg9cxK21w',
  'truncated': False,
  'display_text_range': [0, 118],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/Kgg9cxK21w',
     'expanded_url': 'https://twitter.com/i/broadcasts/1mnxedWbEmYJX',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [95, 118]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 02 02:02:39 +0000 2022',
   'id': 1498841181836521472,
   'id_str': '1498841181836521472',
   'full_text': 'Tune in as I deliver the State of the Union address to a joint session of Congress. https://t.co/Kgg9cxK21w',
   'truncated': False,
   'display_text_range': [0, 107],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/Kgg9cxK21w',
      'expanded_url': 'https://twitter.com/i/broadcasts/1mnxedWbEmYJX',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [84, 107]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2103,
   'favorite_count': 8783,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2103,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 01 14:58:00 +0000 2022',
  'id': 1498673917791281153,
  'id_str': '1498673917791281153',
  'full_text': 'Tonight, I’ll be taking the stage to deliver my State of the Union address to the nation.\n\nFolks in every corner of the country are hosting parties to watch the address and discuss our vision for America. Join one here: \nhttps://t.co/hap8s9XNcu',
  'truncated': False,
  'display_text_range': [0, 244],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/hap8s9XNcu',
     'expanded_url': 'https://events.democrats.org/?event_type=15&show_all_events=true&utm_source=soc__20220228SOTUjrb_co_evn_bh',
     'display_url': 'events.democrats.org/?event_type=15…',
     'indices': [221, 244]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1277,
  'favorite_count': 7890,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 28 17:39:17 +0000 2022',
  'id': 1498352115625959425,
  'id_str': '1498352115625959425',
  'full_text': 'I believe it’s time that we have a Court that reflects the full talents and greatness of our nation with a nominee of extraordinary qualifications—and that we inspire all young people to believe that they can one day serve their country at the highest level. https://t.co/7G2LwCtzkB',
  'truncated': False,
  'display_text_range': [0, 258],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1498352049251143685,
     'id_str': '1498352049251143685',
     'indices': [259, 282],
     'media_url': 'http://pbs.twimg.com/media/FMs3TjdXEAEZmiD.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FMs3TjdXEAEZmiD.jpg',
     'url': 'https://t.co/7G2LwCtzkB',
     'display_url': 'pic.twitter.com/7G2LwCtzkB',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1498352115625959425/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1498352049251143685,
     'id_str': '1498352049251143685',
     'indices': [259, 282],
     'media_url': 'http://pbs.twimg.com/media/FMs3TjdXEAEZmiD.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FMs3TjdXEAEZmiD.jpg',
     'url': 'https://t.co/7G2LwCtzkB',
     'display_url': 'pic.twitter.com/7G2LwCtzkB',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1498352115625959425/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 41474,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1498352049251143685/vid/320x320/Eb9R2y-nOb_JaEr8.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1498352049251143685/pl/tWticfePS0gd_pEr.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1498352049251143685/vid/540x540/iRw-i3IV5_-Ippx1.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1498352049251143685/vid/720x720/_CcMllFet-eVRj4S.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden on Judge Ketanji Brown Jackson',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1828,
  'favorite_count': 14402,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 26 22:42:00 +0000 2022',
  'id': 1497703523366195201,
  'id_str': '1497703523366195201',
  'full_text': 'With a uniquely accomplished and wide-ranging background both in public service and in private law practice, Judge Ketanji Brown Jackson cares about making sure our democracy works for the American people. She deserves to be confirmed to our nation’s highest court.',
  'truncated': False,
  'display_text_range': [0, 265],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2940,
  'favorite_count': 28676,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 26 17:13:00 +0000 2022',
  'id': 1497620726806978567,
  'id_str': '1497620726806978567',
  'full_text': 'Two years ago, I made the commitment to nominate the first Black woman to the Supreme Court. I sought a candidate with exceptional credentials, unimpeachable character, and unwavering dedication to the rule of law. \n\nI’m proud to nominate Judge Ketanji Brown Jackson.',
  'truncated': False,
  'display_text_range': [0, 267],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6605,
  'favorite_count': 80174,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 25 15:50:19 +0000 2022',
  'id': 1497237531649261569,
  'id_str': '1497237531649261569',
  'full_text': 'RT @POTUS: I’m proud to announce that I am nominating Judge Ketanji Brown Jackson to serve on the Supreme Court. Currently serving on the U…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 25 15:03:49 +0000 2022',
   'id': 1497225829566324741,
   'id_str': '1497225829566324741',
   'full_text': 'I’m proud to announce that I am nominating Judge Ketanji Brown Jackson to serve on the Supreme Court. Currently serving on the U.S. Court of Appeals for the D.C. Circuit, she is one of our nation’s brightest legal minds and will be an exceptional Justice.\n\nhttps://t.co/iePvhz1YaA https://t.co/Nzqv2AtN8h',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/iePvhz1YaA',
      'expanded_url': 'http://WhiteHouse.gov/KBJ',
      'display_url': 'WhiteHouse.gov/KBJ',
      'indices': [257, 280]}],
    'media': [{'id': 1497225822738038790,
      'id_str': '1497225822738038790',
      'indices': [281, 304],
      'media_url': 'http://pbs.twimg.com/media/FMc29ADXwAYRr3X.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FMc29ADXwAYRr3X.jpg',
      'url': 'https://t.co/Nzqv2AtN8h',
      'display_url': 'pic.twitter.com/Nzqv2AtN8h',
      'expanded_url': 'https://twitter.com/POTUS/status/1497225829566324741/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1497225822738038790,
      'id_str': '1497225822738038790',
      'indices': [281, 304],
      'media_url': 'http://pbs.twimg.com/media/FMc29ADXwAYRr3X.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FMc29ADXwAYRr3X.jpg',
      'url': 'https://t.co/Nzqv2AtN8h',
      'display_url': 'pic.twitter.com/Nzqv2AtN8h',
      'expanded_url': 'https://twitter.com/POTUS/status/1497225829566324741/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 29314,
   'favorite_count': 174180,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 29314,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 24 21:09:51 +0000 2022',
  'id': 1496955557277802498,
  'id_str': '1496955557277802498',
  'full_text': 'RT @POTUS: I spoke with the G7 leaders today, and we are in full agreement:\n\nWe will limit Russia’s ability to be part of the global econom…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Feb 24 20:33:27 +0000 2022',
   'id': 1496946395093209091,
   'id_str': '1496946395093209091',
   'full_text': 'I spoke with the G7 leaders today, and we are in full agreement:\n\nWe will limit Russia’s ability to be part of the global economy.\n\nWe will stunt their ability to finance and grow Russia’s military. \n\nWe will impair their ability to compete in a high-tech, 21st century economy.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 16099,
   'favorite_count': 135604,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 16099,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 24 03:59:45 +0000 2022',
  'id': 1496696324925779978,
  'id_str': '1496696324925779978',
  'full_text': 'RT @POTUS: Russia alone is responsible for the death and destruction this attack will bring, and the United States and its Allies and partn…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Feb 24 03:56:43 +0000 2022',
   'id': 1496695560849473536,
   'id_str': '1496695560849473536',
   'full_text': 'Russia alone is responsible for the death and destruction this attack will bring, and the United States and its Allies and partners will respond in a united and decisive way. \n\nThe world will hold Russia accountable.',
   'truncated': False,
   'display_text_range': [0, 216],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 55411,
   'favorite_count': 300031,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 55411,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 24 03:59:36 +0000 2022',
  'id': 1496696286766149635,
  'id_str': '1496696286766149635',
  'full_text': 'RT @POTUS: The prayers of the world are with the people of Ukraine tonight as they suffer an unprovoked and unjustified attack by Russian m…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Feb 24 03:40:28 +0000 2022',
   'id': 1496691470862106631,
   'id_str': '1496691470862106631',
   'full_text': 'The prayers of the world are with the people of Ukraine tonight as they suffer an unprovoked and unjustified attack by Russian military forces. President Putin has chosen a premeditated war that will bring a catastrophic loss of life and human suffering. https://t.co/Q7eUJ0CG3k',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/Q7eUJ0CG3k',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/statements-releases/2022/02/23/statement-by-president-biden-on-russias-unprovoked-and-unjustified-attack-on-ukraine/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [255, 278]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 31357,
   'favorite_count': 123800,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 31357,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 22 22:11:32 +0000 2022',
  'id': 1496246304627957766,
  'id_str': '1496246304627957766',
  'full_text': 'RT @POTUS: At every step, we have shown that the United States and our Allies and partners are working in unison. \n \nWe are united in our s…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Feb 22 22:09:17 +0000 2022',
   'id': 1496245737927188485,
   'id_str': '1496245737927188485',
   'full_text': 'At every step, we have shown that the United States and our Allies and partners are working in unison. \n \nWe are united in our support for Ukraine. \n \nWe are united in our opposition to Russia’s aggression. \n \nWe are united in our resolve to defend our Alliance.',
   'truncated': False,
   'display_text_range': [0, 262],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5885,
   'favorite_count': 37000,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5885,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 22 00:38:04 +0000 2022',
  'id': 1495920792818925568,
  'id_str': '1495920792818925568',
  'full_text': 'RT @POTUS: I have signed an Executive Order to deny Russia the chance to profit from its blatant violations of international law. We are co…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Feb 22 00:00:23 +0000 2022',
   'id': 1495911308625125380,
   'id_str': '1495911308625125380',
   'full_text': 'I have signed an Executive Order to deny Russia the chance to profit from its blatant violations of international law. We are continuing to closely consult with Allies and partners, including Ukraine, on next steps. https://t.co/ZS81ivAPgs',
   'truncated': False,
   'display_text_range': [0, 215],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1495911302706958337,
      'id_str': '1495911302706958337',
      'indices': [216, 239],
      'media_url': 'http://pbs.twimg.com/media/FMKLZ3VXEAEtlV1.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FMKLZ3VXEAEtlV1.jpg',
      'url': 'https://t.co/ZS81ivAPgs',
      'display_url': 'pic.twitter.com/ZS81ivAPgs',
      'expanded_url': 'https://twitter.com/POTUS/status/1495911308625125380/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1495911302706958337,
      'id_str': '1495911302706958337',
      'indices': [216, 239],
      'media_url': 'http://pbs.twimg.com/media/FMKLZ3VXEAEtlV1.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FMKLZ3VXEAEtlV1.jpg',
      'url': 'https://t.co/ZS81ivAPgs',
      'display_url': 'pic.twitter.com/ZS81ivAPgs',
      'expanded_url': 'https://twitter.com/POTUS/status/1495911308625125380/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 18762,
   'favorite_count': 130733,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 18762,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 19 23:05:56 +0000 2022',
  'id': 1495172832669704193,
  'id_str': '1495172832669704193',
  'full_text': 'RT @POTUS: On this Day of Remembrance of Japanese American Incarceration During World War II, we acknowledge the unjust incarceration of so…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Feb 19 22:05:06 +0000 2022',
   'id': 1495157522700935176,
   'id_str': '1495157522700935176',
   'full_text': 'On this Day of Remembrance of Japanese American Incarceration During World War II, we acknowledge the unjust incarceration of some 120,000 Japanese Americans – and reaffirm our commitment to Nidoto Nai Yoni, which translates to “Let It Not Happen Again.”\nhttps://t.co/WM4498Z0Ft',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/WM4498Z0Ft',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/presidential-actions/2022/02/18/day-of-remembrance-of-japanese-american-incarceration-during-world-war-ii',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [255, 278]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3813,
   'favorite_count': 18276,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3813,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 18 23:54:01 +0000 2022',
  'id': 1494822544385449984,
  'id_str': '1494822544385449984',
  'full_text': 'The Great Lakes provide more drinking water than any set of lakes in the world, benefitting more than 40 million people. Our historic investment in their restoration will help ensure that they can continue to be enjoyed today, tomorrow, and for generations to come.',
  'truncated': False,
  'display_text_range': [0, 265],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3027,
  'favorite_count': 22357,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 18 22:48:09 +0000 2022',
  'id': 1494805968793841672,
  'id_str': '1494805968793841672',
  'full_text': 'RT @POTUS: The American people are united. Europe is united. The Transatlantic community is united. The entire free world is united.\n \nRuss…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 18 22:10:47 +0000 2022',
   'id': 1494796563406901256,
   'id_str': '1494796563406901256',
   'full_text': 'The American people are united. Europe is united. The Transatlantic community is united. The entire free world is united.\n \nRussia has a choice — between war and all the suffering that it will bring — or diplomacy that will make the future safer for everyone.',
   'truncated': False,
   'display_text_range': [0, 259],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11325,
   'favorite_count': 62948,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11325,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 18 21:46:49 +0000 2022',
  'id': 1494790530991013893,
  'id_str': '1494790530991013893',
  'full_text': 'RT @POTUS: I spoke today with Transatlantic Allies and partners to discuss Russia’s military build-up in and around Ukraine. We agreed on o…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 18 21:45:23 +0000 2022',
   'id': 1494790173124481025,
   'id_str': '1494790173124481025',
   'full_text': 'I spoke today with Transatlantic Allies and partners to discuss Russia’s military build-up in and around Ukraine. We agreed on our support for Ukraine, to continue diplomatic efforts, and affirmed our readiness to impose massive costs on Russia should it choose further conflict.',
   'truncated': False,
   'display_text_range': [0, 279],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4082,
   'favorite_count': 23836,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4082,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 18 19:03:12 +0000 2022',
  'id': 1494749358306349064,
  'id_str': '1494749358306349064',
  'full_text': "We’re investing $1 billion to make the most significant restoration and cleanup of the Great Lakes in its history. \n\nThanks to my Bipartisan Infrastructure Law, we will strengthen the region's economy, provide clean drinking water, and create more good-paying jobs. https://t.co/3qmGaFZR0g",
  'truncated': False,
  'display_text_range': [0, 265],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1494681109988323330,
     'id_str': '1494681109988323330',
     'indices': [266, 289],
     'media_url': 'http://pbs.twimg.com/media/FL4slmkXIAwPl0P.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FL4slmkXIAwPl0P.jpg',
     'url': 'https://t.co/3qmGaFZR0g',
     'display_url': 'pic.twitter.com/3qmGaFZR0g',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1494749358306349064/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1494681109988323330,
     'id_str': '1494681109988323330',
     'indices': [266, 289],
     'media_url': 'http://pbs.twimg.com/media/FL4slmkXIAwPl0P.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FL4slmkXIAwPl0P.jpg',
     'url': 'https://t.co/3qmGaFZR0g',
     'display_url': 'pic.twitter.com/3qmGaFZR0g',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1494749358306349064/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 28261,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1494681109988323330/vid/720x720/uijdR-m5pj37L6zP.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1494681109988323330/vid/320x320/IRtB2vFyr9SOJkPa.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1494681109988323330/pl/WZzucB9MMMJXwqkR.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1494681109988323330/vid/540x540/3ZCOlkLLtcJnM1vM.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 935,
  'favorite_count': 5539,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 18 14:33:59 +0000 2022',
  'id': 1494681608577822721,
  'id_str': '1494681608577822721',
  'full_text': "RT @POTUS: Let’s go, @TeamUSA! Jill and I are so proud of everything America's athletes have accomplished so far, and we look forward to se…",
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'TeamUSA',
     'name': 'Team USA',
     'id': 21870081,
     'id_str': '21870081',
     'indices': [21, 29]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 18 14:13:33 +0000 2022',
   'id': 1494676465299959813,
   'id_str': '1494676465299959813',
   'full_text': "Let’s go, @TeamUSA! Jill and I are so proud of everything America's athletes have accomplished so far, and we look forward to seeing what you achieve in the days ahead. We’re cheering you on every step of the way. https://t.co/5xxcLj3bSi",
   'truncated': False,
   'display_text_range': [0, 213],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'TeamUSA',
      'name': 'Team USA',
      'id': 21870081,
      'id_str': '21870081',
      'indices': [10, 18]}],
    'urls': [],
    'media': [{'id': 1494676458245083138,
      'id_str': '1494676458245083138',
      'indices': [214, 237],
      'media_url': 'http://pbs.twimg.com/media/FL4oUdPWUAIc9fD.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FL4oUdPWUAIc9fD.jpg',
      'url': 'https://t.co/5xxcLj3bSi',
      'display_url': 'pic.twitter.com/5xxcLj3bSi',
      'expanded_url': 'https://twitter.com/POTUS/status/1494676465299959813/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 2048, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1494676458245083138,
      'id_str': '1494676458245083138',
      'indices': [214, 237],
      'media_url': 'http://pbs.twimg.com/media/FL4oUdPWUAIc9fD.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FL4oUdPWUAIc9fD.jpg',
      'url': 'https://t.co/5xxcLj3bSi',
      'display_url': 'pic.twitter.com/5xxcLj3bSi',
      'expanded_url': 'https://twitter.com/POTUS/status/1494676465299959813/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 2048, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3717,
   'favorite_count': 45969,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3717,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 17 18:10:01 +0000 2022',
  'id': 1494373585716187147,
  'id_str': '1494373585716187147',
  'full_text': '17 Nobel Prize winners in economics say the Build Back Better Agenda will ease longer-term inflationary pressures.\n\nWe can get this done.',
  'truncated': False,
  'display_text_range': [0, 137],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4954,
  'favorite_count': 30285,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Feb 16 22:40:00 +0000 2022',
  'id': 1494079142404448256,
  'id_str': '1494079142404448256',
  'full_text': 'If Congress passes our Build Back Better Agenda, we can lower costs for working families with a stroke of a pen.',
  'truncated': False,
  'display_text_range': [0, 112],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4522,
  'favorite_count': 31081,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Feb 16 17:00:24 +0000 2022',
  'id': 1493993676221169667,
  'id_str': '1493993676221169667',
  'full_text': 'My Build Back Better Agenda would lower child care costs, helping parents get back to work. This will help reduce the burden on hardworking families and give them the breathing room they’ve needed. \nhttps://t.co/f56piST17T',
  'truncated': False,
  'display_text_range': [0, 222],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1493978589334757379,
     'id_str': '1493978589334757379',
     'indices': [199, 222],
     'media_url': 'http://pbs.twimg.com/media/FLutpffXMAEvSgj.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FLutpffXMAEvSgj.jpg',
     'url': 'https://t.co/f56piST17T',
     'display_url': 'pic.twitter.com/f56piST17T',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1493978635174400003/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1493978635174400003,
     'source_status_id_str': '1493978635174400003',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1493978589334757379,
     'id_str': '1493978589334757379',
     'indices': [199, 222],
     'media_url': 'http://pbs.twimg.com/media/FLutpffXMAEvSgj.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FLutpffXMAEvSgj.jpg',
     'url': 'https://t.co/f56piST17T',
     'display_url': 'pic.twitter.com/f56piST17T',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1493978635174400003/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1493978635174400003,
     'source_status_id_str': '1493978635174400003',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 22956,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1493978589334757379/vid/540x540/Kg6eqdO_cxDhLbXb.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1493978589334757379/vid/720x720/DvIzyasKSBGrYym1.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1493978589334757379/pl/9Cc-2PUUBigWFOjt.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1493978589334757379/vid/320x320/tbIFx_1PJW2sUg6X.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1209,
  'favorite_count': 6842,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 15 21:00:45 +0000 2022',
  'id': 1493691774505787392,
  'id_str': '1493691774505787392',
  'full_text': 'RT @POTUS: From the beginning of this crisis, I have been clear and consistent: The United States is prepared no matter what happens.  \n \nW…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Feb 15 20:57:41 +0000 2022',
   'id': 1493691006042181638,
   'id_str': '1493691006042181638',
   'full_text': 'From the beginning of this crisis, I have been clear and consistent: The United States is prepared no matter what happens.  \n \nWe are ready for diplomacy to improve stability and security in Europe as a whole.  \n \nAnd we are ready to respond decisively if Russia attacks Ukraine.',
   'truncated': False,
   'display_text_range': [0, 279],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5550,
   'favorite_count': 32391,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5550,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 14 20:07:01 +0000 2022',
  'id': 1493315864288018439,
  'id_str': '1493315864288018439',
  'full_text': 'Under the Build Back Better plan, no one making under $400,000 per year will see their taxes go up a single penny.',
  'truncated': False,
  'display_text_range': [0, 114],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5093,
  'favorite_count': 38867,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 14 16:36:01 +0000 2022',
  'id': 1493262766198636544,
  'id_str': '1493262766198636544',
  'full_text': 'The Bipartisan Infrastructure Law includes $7.5B for states to start building a national network of electric vehicle chargers. Using American parts, these chargers will be installed up and down our highways and the benefits will ripple thousands of miles in every direction.',
  'truncated': False,
  'display_text_range': [0, 274],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1866,
  'favorite_count': 11197,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 14 15:59:11 +0000 2022',
  'id': 1493253497273389070,
  'id_str': '1493253497273389070',
  'full_text': 'RT @POTUS: You’re the love of my life and the life of my love, Jilly. Happy Valentine’s Day. https://t.co/bDNWg6gYbW',
  'truncated': False,
  'display_text_range': [0, 116],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1493253096499298314,
     'id_str': '1493253096499298314',
     'indices': [93, 116],
     'media_url': 'http://pbs.twimg.com/media/FLkZx5iXwAowcED.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FLkZx5iXwAowcED.jpg',
     'url': 'https://t.co/bDNWg6gYbW',
     'display_url': 'pic.twitter.com/bDNWg6gYbW',
     'expanded_url': 'https://twitter.com/POTUS/status/1493253099145904128/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 475, 'resize': 'fit'},
      'medium': {'w': 1149, 'h': 802, 'resize': 'fit'},
      'large': {'w': 1149, 'h': 802, 'resize': 'fit'}},
     'source_status_id': 1493253099145904128,
     'source_status_id_str': '1493253099145904128',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1493253096499298314,
     'id_str': '1493253096499298314',
     'indices': [93, 116],
     'media_url': 'http://pbs.twimg.com/media/FLkZx5iXwAowcED.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FLkZx5iXwAowcED.jpg',
     'url': 'https://t.co/bDNWg6gYbW',
     'display_url': 'pic.twitter.com/bDNWg6gYbW',
     'expanded_url': 'https://twitter.com/POTUS/status/1493253099145904128/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 475, 'resize': 'fit'},
      'medium': {'w': 1149, 'h': 802, 'resize': 'fit'},
      'large': {'w': 1149, 'h': 802, 'resize': 'fit'}},
     'source_status_id': 1493253099145904128,
     'source_status_id_str': '1493253099145904128',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Feb 14 15:57:36 +0000 2022',
   'id': 1493253099145904128,
   'id_str': '1493253099145904128',
   'full_text': 'You’re the love of my life and the life of my love, Jilly. Happy Valentine’s Day. https://t.co/bDNWg6gYbW',
   'truncated': False,
   'display_text_range': [0, 81],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1493253096499298314,
      'id_str': '1493253096499298314',
      'indices': [82, 105],
      'media_url': 'http://pbs.twimg.com/media/FLkZx5iXwAowcED.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FLkZx5iXwAowcED.jpg',
      'url': 'https://t.co/bDNWg6gYbW',
      'display_url': 'pic.twitter.com/bDNWg6gYbW',
      'expanded_url': 'https://twitter.com/POTUS/status/1493253099145904128/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 475, 'resize': 'fit'},
       'medium': {'w': 1149, 'h': 802, 'resize': 'fit'},
       'large': {'w': 1149, 'h': 802, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1493253096499298314,
      'id_str': '1493253096499298314',
      'indices': [82, 105],
      'media_url': 'http://pbs.twimg.com/media/FLkZx5iXwAowcED.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FLkZx5iXwAowcED.jpg',
      'url': 'https://t.co/bDNWg6gYbW',
      'display_url': 'pic.twitter.com/bDNWg6gYbW',
      'expanded_url': 'https://twitter.com/POTUS/status/1493253099145904128/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 475, 'resize': 'fit'},
       'medium': {'w': 1149, 'h': 802, 'resize': 'fit'},
       'large': {'w': 1149, 'h': 802, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9518,
   'favorite_count': 179784,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9518,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 14 15:04:32 +0000 2022',
  'id': 1493239744788152320,
  'id_str': '1493239744788152320',
  'full_text': 'RT @POTUS: On February 14th, 2018, a gunman stole the lives of 14 students and 3 educators at Marjory Stoneman Douglas High School. Today w…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Feb 14 15:00:52 +0000 2022',
   'id': 1493238818429886464,
   'id_str': '1493238818429886464',
   'full_text': 'On February 14th, 2018, a gunman stole the lives of 14 students and 3 educators at Marjory Stoneman Douglas High School. Today we mourn with the Parkland families whose lives were upended and stand with those working to end the epidemic of gun violence. Congress must act.',
   'truncated': False,
   'display_text_range': [0, 272],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7938,
   'favorite_count': 42137,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7938,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 13 19:15:01 +0000 2022',
  'id': 1492940390135123973,
  'id_str': '1492940390135123973',
  'full_text': "We're on track to build a convenient, reliable, equitable national public charging network so that, no matter where you live in America, charging an electric vehicle will be quick and easy. \n\nThis foundation will help American automakers set the pace for electric vehicles.",
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1859,
  'favorite_count': 11746,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 13 16:55:00 +0000 2022',
  'id': 1492905157088141316,
  'id_str': '1492905157088141316',
  'full_text': 'The clean energy investments in my Build Back Better plan will set our country on track to create more good-paying jobs, lower energy costs for families, and combat the climate crisis—without raising costs for working families.',
  'truncated': False,
  'display_text_range': [0, 227],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1663,
  'favorite_count': 10209,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 13 16:30:02 +0000 2022',
  'id': 1492898872405991431,
  'id_str': '1492898872405991431',
  'full_text': 'If it costs drug companies less than $10 to make a vial of insulin, there’s no reason Americans should pay over $300 for this life-saving medicine. \n\nUnder my Build Back Better Agenda, we can cap co-pays for insulin at $35 a month.',
  'truncated': False,
  'display_text_range': [0, 231],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5793,
  'favorite_count': 37344,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 12 22:17:00 +0000 2022',
  'id': 1492623802248871943,
  'id_str': '1492623802248871943',
  'full_text': 'Last year, the American Rescue Plan made affordable, quality coverage a reality for over 5M Americans. My Build Back Better Agenda extends that access by lowering prescription drug costs, capping costs for people on Medicare, and bringing greater transparency to hospital care.',
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2149,
  'favorite_count': 12333,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 12 20:54:00 +0000 2022',
  'id': 1492602914036236288,
  'id_str': '1492602914036236288',
  'full_text': 'Nearly one in four Americans struggle to afford prescription drugs. \n\nNearly 30% have skipped doses—or cut pills in half—because they can’t afford the costs.\n\nThe Build Back Better Agenda will help lower prescription costs and make these life-saving drugs more affordable.',
  'truncated': False,
  'display_text_range': [0, 272],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2213,
  'favorite_count': 13195,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 12 16:24:15 +0000 2022',
  'id': 1492535026814234630,
  'id_str': '1492535026814234630',
  'full_text': 'No American should have to ration or avoid refilling prescriptions because they cannot afford them. My Build Back Better Agenda would help change this. https://t.co/l1aUkcJqJ4',
  'truncated': False,
  'display_text_range': [0, 151],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1492534967385182213,
     'id_str': '1492534967385182213',
     'indices': [152, 175],
     'media_url': 'http://pbs.twimg.com/media/FLaMsdYWYAE3FQ0.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FLaMsdYWYAE3FQ0.jpg',
     'url': 'https://t.co/l1aUkcJqJ4',
     'display_url': 'pic.twitter.com/l1aUkcJqJ4',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1492535026814234630/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1492534967385182213,
     'id_str': '1492534967385182213',
     'indices': [152, 175],
     'media_url': 'http://pbs.twimg.com/media/FLaMsdYWYAE3FQ0.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FLaMsdYWYAE3FQ0.jpg',
     'url': 'https://t.co/l1aUkcJqJ4',
     'display_url': 'pic.twitter.com/l1aUkcJqJ4',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1492535026814234630/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 25291,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1492534967385182213/vid/720x720/KmiAiu5ZnekXU399.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1492534967385182213/vid/320x320/4nSP_bhqe5xmEbBU.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1492534967385182213/vid/540x540/9Oix8068lhRyx0cg.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1492534967385182213/pl/C8hbOwMErS9FRPIu.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'President Biden on the Build Back Better Agenda',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1731,
  'favorite_count': 9646,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 11 20:55:36 +0000 2022',
  'id': 1492240928328794116,
  'id_str': '1492240928328794116',
  'full_text': 'We’re gearing up to make all 600,000 federal government vehicles electric, bringing more manufacturing jobs back to our country, and building supply chains here at home. We’re making “buy American” a reality—not just a promise.',
  'truncated': False,
  'display_text_range': [0, 227],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4765,
  'favorite_count': 37542,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 11 01:44:00 +0000 2022',
  'id': 1491951120029212692,
  'id_str': '1491951120029212692',
  'full_text': 'Last year saw the highest increase in U.S. manufacturing jobs in nearly 30 years. \n\nBy investing in innovation and manufacturing, we’ll create thousands of additional jobs helping build America’s products here in America.',
  'truncated': False,
  'display_text_range': [0, 221],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1936,
  'favorite_count': 11250,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 10 21:45:02 +0000 2022',
  'id': 1491890979573542912,
  'id_str': '1491890979573542912',
  'full_text': 'With my Build Back Better plan, we’ll usher in a new generation of electricity—one that builds a clean energy future for America. We’ll rebuild our grid to be more resilient against extreme weather and lower energy costs for families.',
  'truncated': False,
  'display_text_range': [0, 234],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2098,
  'favorite_count': 13007,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 10 21:30:23 +0000 2022',
  'id': 1491887296177754118,
  'id_str': '1491887296177754118',
  'full_text': 'RT @POTUS: We can cap co-pays for insulin at $35 a month.\n\nWe could do that with the stroke of a pen.\n\nThe Senate just needs to pass my Bui…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Feb 10 21:26:50 +0000 2022',
   'id': 1491886401612300289,
   'id_str': '1491886401612300289',
   'full_text': 'We can cap co-pays for insulin at $35 a month.\n\nWe could do that with the stroke of a pen.\n\nThe Senate just needs to pass my Build Back Better Agenda.',
   'truncated': False,
   'display_text_range': [0, 150],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9174,
   'favorite_count': 59357,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9174,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Feb 09 23:01:01 +0000 2022',
  'id': 1491547712784850954,
  'id_str': '1491547712784850954',
  'full_text': "From my time as vice president to now, I'm making sure our country is built on good-paying union jobs because we know that when folks get a decent wage, not only do workers get a little breathing room, but everybody in the community does better.",
  'truncated': False,
  'display_text_range': [0, 245],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2772,
  'favorite_count': 19073,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 08 23:20:31 +0000 2022',
  'id': 1491190232813043712,
  'id_str': '1491190232813043712',
  'full_text': 'RT @POTUS: I want every member of the LGBTQI+ community — especially the kids who will be impacted by this hateful bill — to know that you…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Feb 08 23:07:34 +0000 2022',
   'id': 1491186973511458818,
   'id_str': '1491186973511458818',
   'full_text': 'I want every member of the LGBTQI+ community — especially the kids who will be impacted by this hateful bill — to know that you are loved and accepted just as you are. I have your back, and my Administration will continue to fight for the protections and safety you deserve. https://t.co/OcAIMeVpHL',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/OcAIMeVpHL',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1491182851919908873',
      'display_url': 'twitter.com/WhiteHouse/sta…',
      'indices': [275, 298]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': True,
   'quoted_status_id': 1491182851919908873,
   'quoted_status_id_str': '1491182851919908873',
   'quoted_status_permalink': {'url': 'https://t.co/OcAIMeVpHL',
    'expanded': 'https://twitter.com/WhiteHouse/status/1491182851919908873',
    'display': 'twitter.com/WhiteHouse/sta…'},
   'quoted_status': {'created_at': 'Tue Feb 08 22:51:11 +0000 2022',
    'id': 1491182851919908873,
    'id_str': '1491182851919908873',
    'full_text': "Today, conservative politicians in Florida advanced legislation designed to attack LGBTQI+ kids. Instead of making growing up harder for young people, @POTUS is focused on keeping schools open and supporting students' mental health.\n \nhttps://t.co/nn6nx8lLDD",
    'truncated': False,
    'display_text_range': [0, 258],
    'entities': {'hashtags': [],
     'symbols': [],
     'user_mentions': [{'screen_name': 'POTUS',
       'name': 'President Biden',
       'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'indices': [151, 157]}],
     'urls': [{'url': 'https://t.co/nn6nx8lLDD',
       'expanded_url': 'https://www.nbcnews.com/nbc-out/out-politics-and-policy/florida-gov-ron-desantis-signals-support-dont-say-gay-bill-rcna15326',
       'display_url': 'nbcnews.com/nbc-out/out-po…',
       'indices': [235, 258]}]},
    'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'in_reply_to_screen_name': None,
    'user': {'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'name': 'The White House',
     'screen_name': 'WhiteHouse',
     'location': 'United States of America',
     'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
     'url': 'https://t.co/121St65y97',
     'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
         'expanded_url': 'http://WhiteHouse.gov',
         'display_url': 'WhiteHouse.gov',
         'indices': [0, 23]}]},
      'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
         'expanded_url': 'http://whitehouse.gov/privacy',
         'display_url': 'whitehouse.gov/privacy',
         'indices': [65, 88]}]}},
     'protected': False,
     'followers_count': 7028901,
     'friends_count': 5,
     'listed_count': 10675,
     'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
     'favourites_count': 0,
     'utc_offset': None,
     'time_zone': None,
     'geo_enabled': False,
     'verified': True,
     'statuses_count': 3512,
     'lang': None,
     'contributors_enabled': False,
     'is_translator': False,
     'is_translation_enabled': False,
     'profile_background_color': 'F5F8FA',
     'profile_background_image_url': None,
     'profile_background_image_url_https': None,
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'has_extended_profile': True,
     'default_profile': True,
     'default_profile_image': False,
     'following': False,
     'follow_request_sent': False,
     'notifications': False,
     'translator_type': 'none',
     'withheld_in_countries': []},
    'geo': None,
    'coordinates': None,
    'place': None,
    'contributors': None,
    'is_quote_status': False,
    'retweet_count': 2410,
    'favorite_count': 8875,
    'favorited': False,
    'retweeted': False,
    'possibly_sensitive': False,
    'lang': 'en'},
   'retweet_count': 8798,
   'favorite_count': 38535,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': True,
  'quoted_status_id': 1491182851919908873,
  'quoted_status_id_str': '1491182851919908873',
  'quoted_status_permalink': {'url': 'https://t.co/OcAIMeVpHL',
   'expanded': 'https://twitter.com/WhiteHouse/status/1491182851919908873',
   'display': 'twitter.com/WhiteHouse/sta…'},
  'retweet_count': 8798,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 08 21:37:00 +0000 2022',
  'id': 1491164184461066247,
  'id_str': '1491164184461066247',
  'full_text': 'Get vaccinated. \nGet boosted. \nWear a mask while you’re in public. \n\nWe are going to get through this together.',
  'truncated': False,
  'display_text_range': [0, 111],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6487,
  'favorite_count': 56430,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 08 20:25:08 +0000 2022',
  'id': 1491146095799717889,
  'id_str': '1491146095799717889',
  'full_text': 'RT @POTUS: Today’s announcement by Tritium is part of the drumbeat of a jobs resurgence unlike anything we’ve seen before.\n \nLet’s keep com…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Feb 08 20:22:57 +0000 2022',
   'id': 1491145547310379011,
   'id_str': '1491145547310379011',
   'full_text': 'Today’s announcement by Tritium is part of the drumbeat of a jobs resurgence unlike anything we’ve seen before.\n \nLet’s keep coming together to invest in American manufacturing — and the workers who make it run.\n \nBecause when we do, there’s no limit to what we can achieve.',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1399,
   'favorite_count': 7635,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1399,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 08 00:15:01 +0000 2022',
  'id': 1490841561625677827,
  'id_str': '1490841561625677827',
  'full_text': 'Folks, I am proud to call myself a union president because organized unions know how to get it done. And we are going to ensure that we build a better America for those who build this country—the middle class.',
  'truncated': False,
  'display_text_range': [0, 209],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4412,
  'favorite_count': 33832,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 07 17:07:05 +0000 2022',
  'id': 1490733869942910977,
  'id_str': '1490733869942910977',
  'full_text': 'There’s a clear choice between a party that is focused on the future, and a party that’s focused on trying to relitigate the past. If you’re able, chip in to support electing Democrats who will help continue moving our nation forward.\nhttps://t.co/GqkAHx3GwO',
  'truncated': False,
  'display_text_range': [0, 258],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/GqkAHx3GwO',
     'expanded_url': 'https://secure.actblue.com/donate/social-feb?refcode=sm_20220207_jb',
     'display_url': 'secure.actblue.com/donate/social-…',
     'indices': [235, 258]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 901,
  'favorite_count': 4462,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 07 16:18:55 +0000 2022',
  'id': 1490721748068753410,
  'id_str': '1490721748068753410',
  'full_text': 'RT @POTUS: I look forward to welcoming German Chancellor Olaf Scholz to the White House this afternoon. We’re working together to support U…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Feb 07 16:15:36 +0000 2022',
   'id': 1490720912278265860,
   'id_str': '1490720912278265860',
   'full_text': 'I look forward to welcoming German Chancellor Olaf Scholz to the White House this afternoon. We’re working together to support Ukraine’s sovereignty and territorial integrity, and we’re committed to making progress on COVID-19, climate change, and more.',
   'truncated': False,
   'display_text_range': [0, 253],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3218,
   'favorite_count': 25108,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3218,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 07 00:35:00 +0000 2022',
  'id': 1490484203816988672,
  'id_str': '1490484203816988672',
  'full_text': "When we invest in innovation, it powers up the private sector to do what it does best: creating new technologies, new industries, and most importantly new good-paying jobs. These are the kinds of partnerships that help us build a made in America future. \n\nWe can't slow down now.",
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1554,
  'favorite_count': 10024,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 06 22:19:00 +0000 2022',
  'id': 1490449977495203840,
  'id_str': '1490449977495203840',
  'full_text': 'Americans have missed more than 9 million cancer screenings in the last two years because of COVID-19. \n\nIf you were supposed to get a cancer screening during the pandemic, call your primary care doctor today.',
  'truncated': False,
  'display_text_range': [0, 209],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2718,
  'favorite_count': 16573,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 06 20:33:00 +0000 2022',
  'id': 1490423302480973827,
  'id_str': '1490423302480973827',
  'full_text': 'The Bipartisan Infrastructure Law will rebuild our nation’s roads and bridges, creating more good union jobs. And we’ll do it by supporting union-based apprenticeships, community colleges, and on-the-job trainings in manufacturing and construction.',
  'truncated': False,
  'display_text_range': [0, 248],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1507,
  'favorite_count': 8950,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 06 19:18:00 +0000 2022',
  'id': 1490404428314152960,
  'id_str': '1490404428314152960',
  'full_text': 'I know that there is more work to do to repair the frustration and fatigue in our country as a result of the pandemic, but we have come a long way in one year. Life-saving vaccines and an increase in our supply of tests are helping us get on track to moving beyond the pandemic.',
  'truncated': False,
  'display_text_range': [0, 278],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2138,
  'favorite_count': 15039,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 06 16:00:08 +0000 2022',
  'id': 1490354631381336066,
  'id_str': '1490354631381336066',
  'full_text': 'From the largest drop in the unemployment rate on record to the largest reduction in childhood poverty ever recorded in a single year, my first year in office saw the strongest economic growth in nearly 40 years. \n\nThere’s more work to do, but America is on the move.',
  'truncated': False,
  'display_text_range': [0, 267],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2529,
  'favorite_count': 14570,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 06 01:05:14 +0000 2022',
  'id': 1490129421788983298,
  'id_str': '1490129421788983298',
  'full_text': 'I know January was a hard month for many Americans. After almost two years, the emotional and physical weight of the pandemic has been incredibly difficult to bear for so many folks across the country.\n\nBut, despite the challenges, we have the tools to keep our recovery going. https://t.co/9pddR3Jr6z',
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1490129366336090116,
     'id_str': '1490129366336090116',
     'indices': [278, 301],
     'media_url': 'http://pbs.twimg.com/media/FK4Az0WXEAAMLOT.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FK4Az0WXEAAMLOT.jpg',
     'url': 'https://t.co/9pddR3Jr6z',
     'display_url': 'pic.twitter.com/9pddR3Jr6z',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1490129421788983298/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1490129366336090116,
     'id_str': '1490129366336090116',
     'indices': [278, 301],
     'media_url': 'http://pbs.twimg.com/media/FK4Az0WXEAAMLOT.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FK4Az0WXEAAMLOT.jpg',
     'url': 'https://t.co/9pddR3Jr6z',
     'display_url': 'pic.twitter.com/9pddR3Jr6z',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1490129421788983298/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 54287,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1490129366336090116/vid/540x540/yEm-0jOnaXgf-UiU.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1490129366336090116/vid/720x720/RT_An4rivjnAOQQA.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1490129366336090116/vid/320x320/GscQ4Ty-t2Rshw4a.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1490129366336090116/pl/pulwFhkryWhz56-t.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'We have the tools to keep our recovery going.',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1114,
  'favorite_count': 6944,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 05 23:30:01 +0000 2022',
  'id': 1490105461324062721,
  'id_str': '1490105461324062721',
  'full_text': 'Stronger law enforcement is critical to stopping gun crime, but it’s made more effective when we invest in strengthening our communities.\n\nMy comprehensive strategy makes sure cities and states have the tools they need to invest in proven, community-based tactics to reduce crime.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1410,
  'favorite_count': 9062,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 05 21:23:00 +0000 2022',
  'id': 1490073497233760256,
  'id_str': '1490073497233760256',
  'full_text': 'The Bipartisan Infrastructure Law isn’t just about infrastructure—it’s about jobs.\n\nWe’re going to create good-paying jobs for Americans by modernizing our bridges, highways, roads, ports, and airports.',
  'truncated': False,
  'display_text_range': [0, 202],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1360,
  'favorite_count': 8312,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 05 18:25:14 +0000 2022',
  'id': 1490028761261170697,
  'id_str': '1490028761261170697',
  'full_text': "I committed to this fight when I was Vice President. It's one of the reasons why, quite frankly, I ran for president. Let there be no doubt: Now that I am president, this is a presidential White House priority. Period. https://t.co/sXKyYt2Cz5",
  'truncated': False,
  'display_text_range': [0, 218],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1490028704814276608,
     'id_str': '1490028704814276608',
     'indices': [219, 242],
     'media_url': 'http://pbs.twimg.com/media/FK2lQm7WYAk48T_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FK2lQm7WYAk48T_.jpg',
     'url': 'https://t.co/sXKyYt2Cz5',
     'display_url': 'pic.twitter.com/sXKyYt2Cz5',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1490028761261170697/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1490028704814276608,
     'id_str': '1490028704814276608',
     'indices': [219, 242],
     'media_url': 'http://pbs.twimg.com/media/FK2lQm7WYAk48T_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FK2lQm7WYAk48T_.jpg',
     'url': 'https://t.co/sXKyYt2Cz5',
     'display_url': 'pic.twitter.com/sXKyYt2Cz5',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1490028761261170697/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 29863,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1490028704814276608/vid/320x320/yPy4SXiO5zqUmLP2.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1490028704814276608/pl/lVBq_17oO0BaPjVv.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1490028704814276608/vid/540x540/2ldLLIxERCYE5hdS.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1490028704814276608/vid/720x720/X-l_dgSI9OJIJkkv.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden on Cancer Moonshot',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1044,
  'favorite_count': 7134,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 05 16:54:01 +0000 2022',
  'id': 1490005802819674117,
  'id_str': '1490005802819674117',
  'full_text': 'The hardships of the past two years are hard to overstate. But please know that our country and economy are in a much better place today. There is still more work to be done, but we are doing everything we can to prepare for a future beyond the pandemic.',
  'truncated': False,
  'display_text_range': [0, 254],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2288,
  'favorite_count': 13856,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 05 15:45:01 +0000 2022',
  'id': 1489988439403638790,
  'id_str': '1489988439403638790',
  'full_text': 'In January our economy created 467,000 jobs, exceeding all expectations. \n\nOver the last 12 months, our country added 6.6 million jobs—more than during any 12-month period in our nation’s history.',
  'truncated': False,
  'display_text_range': [0, 196],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2393,
  'favorite_count': 13997,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 05 00:51:10 +0000 2022',
  'id': 1489763496006979585,
  'id_str': '1489763496006979585',
  'full_text': "I've asked Congress to provide $200 million to invest in community violence intervention programs that can interrupt violence, mediate conflict, de-escalate, and succeed in preventing shootings. https://t.co/X7xvKPTLPG",
  'truncated': False,
  'display_text_range': [0, 194],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1489763457025126401,
     'id_str': '1489763457025126401',
     'indices': [195, 218],
     'media_url': 'http://pbs.twimg.com/media/FKy0AE4XEAM_SeF.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKy0AE4XEAM_SeF.jpg',
     'url': 'https://t.co/X7xvKPTLPG',
     'display_url': 'pic.twitter.com/X7xvKPTLPG',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1489763496006979585/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1489763457025126401,
     'id_str': '1489763457025126401',
     'indices': [195, 218],
     'media_url': 'http://pbs.twimg.com/media/FKy0AE4XEAM_SeF.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKy0AE4XEAM_SeF.jpg',
     'url': 'https://t.co/X7xvKPTLPG',
     'display_url': 'pic.twitter.com/X7xvKPTLPG',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1489763496006979585/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 15048,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1489763457025126401/vid/540x540/plTXMFtpz185WI1p.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1489763457025126401/vid/320x320/pgL6z4aXzL7V_3QH.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1489763457025126401/vid/720x720/QjW-W2dtpYntwqge.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1489763457025126401/pl/eAA7oeosyw25liPh.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'President Biden on Reducing Gun Violence',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1225,
  'favorite_count': 6942,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 04 22:28:00 +0000 2022',
  'id': 1489727467413778440,
  'id_str': '1489727467413778440',
  'full_text': "We are supercharging the Cancer Moonshot. The goal is to cut the cancer death rate in half in the next 25 years. \n\nIt’s bold. It’s ambitious. But it's completely doable.",
  'truncated': False,
  'display_text_range': [0, 169],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2355,
  'favorite_count': 20033,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 04 14:33:08 +0000 2022',
  'id': 1489607962737971205,
  'id_str': '1489607962737971205',
  'full_text': 'RT @POTUS: We created 467,000 jobs in January. That’s more than 6.6 million jobs since I took office.\n\n2021 was the greatest year of job cr…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 04 14:30:12 +0000 2022',
   'id': 1489607223533883392,
   'id_str': '1489607223533883392',
   'full_text': 'We created 467,000 jobs in January. That’s more than 6.6 million jobs since I took office.\n\n2021 was the greatest year of job creation under any president in history.',
   'truncated': False,
   'display_text_range': [0, 166],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 12099,
   'favorite_count': 68522,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 12099,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 03 21:14:06 +0000 2022',
  'id': 1489346480750178307,
  'id_str': '1489346480750178307',
  'full_text': 'The Bipartisan Infrastructure Law will reconnect communities by modernizing highways, repairing bridges, and making the largest investment ever in affordable, high-speed Internet. \n\nOur country has never made such significant investments. Now we are.',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1154,
  'favorite_count': 7366,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 03 17:55:02 +0000 2022',
  'id': 1489296382582304769,
  'id_str': '1489296382582304769',
  'full_text': 'Get vaccinated. \nGet boosted. \nWear a mask while you’re in public. \n\nWe are going to get through this together.',
  'truncated': False,
  'display_text_range': [0, 111],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5827,
  'favorite_count': 51330,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 03 13:35:00 +0000 2022',
  'id': 1489230943558815744,
  'id_str': '1489230943558815744',
  'full_text': 'RT @POTUS: Last night at my direction, U.S. military forces successfully undertook a counterterrorism operation. Thanks to the bravery of o…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Feb 03 12:48:00 +0000 2022',
   'id': 1489219116732928004,
   'id_str': '1489219116732928004',
   'full_text': 'Last night at my direction, U.S. military forces successfully undertook a counterterrorism operation. Thanks to the bravery of our Armed Forces, we have removed from the battlefield Abu Ibrahim al-Hashimi al-Qurayshi — the leader of ISIS.\n \nhttps://t.co/lsYQHE9lR9',
   'truncated': False,
   'display_text_range': [0, 264],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/lsYQHE9lR9',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/statements-releases/2022/02/03/statement-by-president-joe-biden-3/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [241, 264]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9087,
   'favorite_count': 41110,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9087,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 03 00:31:01 +0000 2022',
  'id': 1489033649962065920,
  'id_str': '1489033649962065920',
  'full_text': "To build a truly strong economy, we need a future that's made in America.\nhttps://t.co/IFDZ05pw0R",
  'truncated': False,
  'display_text_range': [0, 97],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1487229760354856968,
     'id_str': '1487229760354856968',
     'indices': [74, 97],
     'media_url': 'http://pbs.twimg.com/media/FKOzo9TXEAIxrXW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKOzo9TXEAIxrXW.jpg',
     'url': 'https://t.co/IFDZ05pw0R',
     'display_url': 'pic.twitter.com/IFDZ05pw0R',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1487229823017795588/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1487229823017795588,
     'source_status_id_str': '1487229823017795588',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1487229760354856968,
     'id_str': '1487229760354856968',
     'indices': [74, 97],
     'media_url': 'http://pbs.twimg.com/media/FKOzo9TXEAIxrXW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKOzo9TXEAIxrXW.jpg',
     'url': 'https://t.co/IFDZ05pw0R',
     'display_url': 'pic.twitter.com/IFDZ05pw0R',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1487229823017795588/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1487229823017795588,
     'source_status_id_str': '1487229823017795588',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 53853,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1487229760354856968/vid/320x320/5G6TILwx3eGmnFoH.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1487229760354856968/vid/540x540/_2NhobRBSTbkBJnD.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1487229760354856968/pl/dmoFHOoR0HvKbHKE.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1487229760354856968/vid/720x720/-HhCIWEVleT13UIu.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden on building a strong economy',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1136,
  'favorite_count': 7371,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Feb 02 19:55:27 +0000 2022',
  'id': 1488964300970643460,
  'id_str': '1488964300970643460',
  'full_text': 'RT @POTUS: Today, I’m proud to announce our plan to supercharge the Cancer Moonshot as a central effort of the Biden-Harris Administration.…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Feb 02 19:52:16 +0000 2022',
   'id': 1488963500147892229,
   'id_str': '1488963500147892229',
   'full_text': 'Today, I’m proud to announce our plan to supercharge the Cancer Moonshot as a central effort of the Biden-Harris Administration.\n\nOur goal is to cut the cancer death rate by at least 50% over the next 25 years.\n\nIt’s bold, ambitious, and completely doable.',
   'truncated': False,
   'display_text_range': [0, 256],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3951,
   'favorite_count': 28054,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3951,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Feb 02 17:10:10 +0000 2022',
  'id': 1488922707278368774,
  'id_str': '1488922707278368774',
  'full_text': 'This time last year, at-home tests were difficult to come by. Now, we’re making 1 billion at-home tests available to order to your home—for free.\n\nVisit https://t.co/S3QwmHvt3K or call (800) 232-0233 to get yours.',
  'truncated': False,
  'display_text_range': [0, 213],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/S3QwmHvt3K',
     'expanded_url': 'http://COVIDTests.gov',
     'display_url': 'COVIDTests.gov',
     'indices': [153, 176]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1473,
  'favorite_count': 7862,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Feb 02 15:10:16 +0000 2022',
  'id': 1488892530632581132,
  'id_str': '1488892530632581132',
  'full_text': 'As I said during a meeting with the National Governors Association, last year was the greatest year of job growth in American history. And we’ll keep it going in 2022. https://t.co/pEzLF2zDpF',
  'truncated': False,
  'display_text_range': [0, 167],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1488892470075305986,
     'id_str': '1488892470075305986',
     'indices': [168, 191],
     'media_url': 'http://pbs.twimg.com/media/FKmb3RCXEAMJcMU.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKmb3RCXEAMJcMU.jpg',
     'url': 'https://t.co/pEzLF2zDpF',
     'display_url': 'pic.twitter.com/pEzLF2zDpF',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1488892530632581132/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1488892470075305986,
     'id_str': '1488892470075305986',
     'indices': [168, 191],
     'media_url': 'http://pbs.twimg.com/media/FKmb3RCXEAMJcMU.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKmb3RCXEAMJcMU.jpg',
     'url': 'https://t.co/pEzLF2zDpF',
     'display_url': 'pic.twitter.com/pEzLF2zDpF',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1488892530632581132/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 37470,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488892470075305986/vid/540x540/rx4WTIrY8S9yd3kO.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1488892470075305986/pl/j6x5p6f3gJYiSxQU.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488892470075305986/vid/320x320/vBnQ_N2M3PHfOOC0.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488892470075305986/vid/720x720/mktSnxROnwpEIKUn.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Last year was the greatest year of job growth in American history',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 807,
  'favorite_count': 5067,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 01 20:55:01 +0000 2022',
  'id': 1488616901760757760,
  'id_str': '1488616901760757760',
  'full_text': 'Happy Lunar New Year to those celebrating throughout the nation and around the world. I’m grateful for the invaluable contributions the AAPI community has made to our society, economy, and culture. May the Year of the Tiger bring happiness, health, and prosperity to all.',
  'truncated': False,
  'display_text_range': [0, 271],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1679,
  'favorite_count': 13339,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 01 17:35:14 +0000 2022',
  'id': 1488566627385982976,
  'id_str': '1488566627385982976',
  'full_text': 'Black History Month serves as both a celebration and a powerful reminder that Black history is American history, Black culture is American culture, and Black stories are essential to the ongoing story of America—our faults, our struggles, our progress, and our aspirations. https://t.co/nW7Fe3YbOx',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1488566570767032324,
     'id_str': '1488566570767032324',
     'indices': [274, 297],
     'media_url': 'http://pbs.twimg.com/media/FKhzdNUXIA0pd-_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKhzdNUXIA0pd-_.jpg',
     'url': 'https://t.co/nW7Fe3YbOx',
     'display_url': 'pic.twitter.com/nW7Fe3YbOx',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1488566627385982976/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1488566570767032324,
     'id_str': '1488566570767032324',
     'indices': [274, 297],
     'media_url': 'http://pbs.twimg.com/media/FKhzdNUXIA0pd-_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKhzdNUXIA0pd-_.jpg',
     'url': 'https://t.co/nW7Fe3YbOx',
     'display_url': 'pic.twitter.com/nW7Fe3YbOx',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1488566627385982976/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 14247,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488566570767032324/vid/540x540/9QNLZbO50fOrOYa2.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488566570767032324/vid/720x720/EvQarcsyjqbAw1IR.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488566570767032324/vid/320x320/k79M4cPTubkIjZNY.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1488566570767032324/pl/dJe7I6fYk1ZcYdO6.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Black history is American history',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1442,
  'favorite_count': 6569,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 01 14:41:04 +0000 2022',
  'id': 1488522794468093952,
  'id_str': '1488522794468093952',
  'full_text': 'RT @POTUS: Our nation was founded on an idea: that all of us are created equal. As we celebrate National Black History Month, we recommit o…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Feb 01 14:37:40 +0000 2022',
   'id': 1488521941690589184,
   'id_str': '1488521941690589184',
   'full_text': 'Our nation was founded on an idea: that all of us are created equal. As we celebrate National Black History Month, we recommit ourselves to reach for that founding promise and fight for the equity, opportunity, and dignity that every Black American is due in equal measure.',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5968,
   'favorite_count': 37474,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5968,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 01 00:44:00 +0000 2022',
  'id': 1488312141430071300,
  'id_str': '1488312141430071300',
  'full_text': 'Since I was sworn in, America has added an additional 367,000 good-paying manufacturing jobs in America—the highest increase in U.S. manufacturing jobs in 30 years.',
  'truncated': False,
  'display_text_range': [0, 164],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4551,
  'favorite_count': 29089,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 31 20:38:14 +0000 2022',
  'id': 1488250289635438597,
  'id_str': '1488250289635438597',
  'full_text': 'Extreme weather cost the country $145 billion last year alone. And it’s not going to ease up.\n\nOur Bipartisan Infrastructure Law invests in our resilience, building roads higher, our levees stronger, and our power grids more durable so that they can stand up to extreme weather. https://t.co/PaxoP3kzXt',
  'truncated': False,
  'display_text_range': [0, 278],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1488250234455179264,
     'id_str': '1488250234455179264',
     'indices': [279, 302],
     'media_url': 'http://pbs.twimg.com/media/FKdTv6jWQAMwqi4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKdTv6jWQAMwqi4.jpg',
     'url': 'https://t.co/PaxoP3kzXt',
     'display_url': 'pic.twitter.com/PaxoP3kzXt',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1488250289635438597/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1488250234455179264,
     'id_str': '1488250234455179264',
     'indices': [279, 302],
     'media_url': 'http://pbs.twimg.com/media/FKdTv6jWQAMwqi4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKdTv6jWQAMwqi4.jpg',
     'url': 'https://t.co/PaxoP3kzXt',
     'display_url': 'pic.twitter.com/PaxoP3kzXt',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1488250289635438597/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 34934,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488250234455179264/vid/320x320/043Eh8PkQPmzcTOX.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1488250234455179264/pl/CsBUbqGnCQzWUVOH.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488250234455179264/vid/540x540/oxrfF-wZTDWbJPPB.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1488250234455179264/vid/720x720/los4uOK1W6DNasJn.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Extreme weather cost the country $145 billion last year alone',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1091,
  'favorite_count': 6287,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 29 00:32:44 +0000 2022',
  'id': 1487222141959479303,
  'id_str': '1487222141959479303',
  'full_text': 'RT @POTUS: This morning, the Frick Park Bridge collapsed in Pittsburgh. This afternoon, I visited the site and met with local officials. Ji…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Jan 28 21:39:49 +0000 2022',
   'id': 1487178624008654850,
   'id_str': '1487178624008654850',
   'full_text': 'This morning, the Frick Park Bridge collapsed in Pittsburgh. This afternoon, I visited the site and met with local officials. Jill and I are keeping those injured in our prayers, and we’re grateful for the first responders. They deserve an incredible amount of credit. https://t.co/s6JwRiFpRX',
   'truncated': False,
   'display_text_range': [0, 268],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1487178609274019844,
      'id_str': '1487178609274019844',
      'indices': [269, 292],
      'media_url': 'http://pbs.twimg.com/media/FKOFENNWYAQK6-D.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FKOFENNWYAQK6-D.jpg',
      'url': 'https://t.co/s6JwRiFpRX',
      'display_url': 'pic.twitter.com/s6JwRiFpRX',
      'expanded_url': 'https://twitter.com/POTUS/status/1487178624008654850/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1366, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1487178609274019844,
      'id_str': '1487178609274019844',
      'indices': [269, 292],
      'media_url': 'http://pbs.twimg.com/media/FKOFENNWYAQK6-D.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FKOFENNWYAQK6-D.jpg',
      'url': 'https://t.co/s6JwRiFpRX',
      'display_url': 'pic.twitter.com/s6JwRiFpRX',
      'expanded_url': 'https://twitter.com/POTUS/status/1487178624008654850/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1366, 'resize': 'fit'}}},
     {'id': 1487178617767481352,
      'id_str': '1487178617767481352',
      'indices': [269, 292],
      'media_url': 'http://pbs.twimg.com/media/FKOFEs2WUAgY6sE.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FKOFEs2WUAgY6sE.jpg',
      'url': 'https://t.co/s6JwRiFpRX',
      'display_url': 'pic.twitter.com/s6JwRiFpRX',
      'expanded_url': 'https://twitter.com/POTUS/status/1487178624008654850/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2588,
   'favorite_count': 18393,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2588,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 28 22:32:00 +0000 2022',
  'id': 1487191758903599117,
  'id_str': '1487191758903599117',
  'full_text': 'Fastest economic growth in nearly four decades.\nGreatest year of job growth in American history. \n\nThis is no accident. \n\nOur economic strategy is creating good jobs for Americans and making our companies more competitive. And it’s just the beginning.',
  'truncated': False,
  'display_text_range': [0, 251],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3001,
  'favorite_count': 16981,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 28 21:10:46 +0000 2022',
  'id': 1487171316046249985,
  'id_str': '1487171316046249985',
  'full_text': 'RT @POTUS: Good news, folks: You can get free COVID-19 tests delivered right to your home. Head to https://t.co/12LzJrqFsC to get yours tod…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/12LzJrqFsC',
     'expanded_url': 'http://COVIDtests.gov',
     'display_url': 'COVIDtests.gov',
     'indices': [99, 122]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Jan 28 21:10:18 +0000 2022',
   'id': 1487171196781215753,
   'id_str': '1487171196781215753',
   'full_text': 'Good news, folks: You can get free COVID-19 tests delivered right to your home. Head to https://t.co/12LzJrqFsC to get yours today. https://t.co/ZHOg1Z9FAA',
   'truncated': False,
   'display_text_range': [0, 131],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/12LzJrqFsC',
      'expanded_url': 'http://COVIDtests.gov',
      'display_url': 'COVIDtests.gov',
      'indices': [88, 111]}],
    'media': [{'id': 1487171137444458501,
      'id_str': '1487171137444458501',
      'indices': [132, 155],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1487171137444458501/img/qpRnuPxfSmXcZR4j.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1487171137444458501/img/qpRnuPxfSmXcZR4j.jpg',
      'url': 'https://t.co/ZHOg1Z9FAA',
      'display_url': 'pic.twitter.com/ZHOg1Z9FAA',
      'expanded_url': 'https://twitter.com/POTUS/status/1487171196781215753/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1487171137444458501,
      'id_str': '1487171137444458501',
      'indices': [132, 155],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1487171137444458501/img/qpRnuPxfSmXcZR4j.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1487171137444458501/img/qpRnuPxfSmXcZR4j.jpg',
      'url': 'https://t.co/ZHOg1Z9FAA',
      'display_url': 'pic.twitter.com/ZHOg1Z9FAA',
      'expanded_url': 'https://twitter.com/POTUS/status/1487171196781215753/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 46880,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1487171137444458501/vid/320x320/nGAC6UrF1aV4f0CY.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1487171137444458501/pl/VDXPg6YcPiz5ViQ5.m3u8?tag=14&container=fmp4'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1487171137444458501/vid/540x540/MWo61dRGjqKvGFSP.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1487171137444458501/vid/720x720/e120QDCHud_l9Yv3.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2461,
   'favorite_count': 11693,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2461,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 28 18:19:00 +0000 2022',
  'id': 1487128090648227843,
  'id_str': '1487128090648227843',
  'full_text': 'After four decades and 28 years on the United States Supreme Court, I commend Justice Stephen Breyer’s life of service. His brilliance, his desire to know more, kindness to those around him, and his optimism for the promise of our country has made him a model public servant.',
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1677,
  'favorite_count': 13519,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 28 00:43:00 +0000 2022',
  'id': 1486862338116534279,
  'id_str': '1486862338116534279',
  'full_text': 'I’m keeping the commitment I made during my campaign for president—I will nominate the first Black woman to the United States Supreme Court.\nhttps://t.co/aoVrliWiMH',
  'truncated': False,
  'display_text_range': [0, 164],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1486843974941827078,
     'id_str': '1486843974941827078',
     'indices': [141, 164],
     'media_url': 'http://pbs.twimg.com/media/FKJUwlcXwAYd3R1.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKJUwlcXwAYd3R1.jpg',
     'url': 'https://t.co/aoVrliWiMH',
     'display_url': 'pic.twitter.com/aoVrliWiMH',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1486844025407778820/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1486844025407778820,
     'source_status_id_str': '1486844025407778820',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1486843974941827078,
     'id_str': '1486843974941827078',
     'indices': [141, 164],
     'media_url': 'http://pbs.twimg.com/media/FKJUwlcXwAYd3R1.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FKJUwlcXwAYd3R1.jpg',
     'url': 'https://t.co/aoVrliWiMH',
     'display_url': 'pic.twitter.com/aoVrliWiMH',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1486844025407778820/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1486844025407778820,
     'source_status_id_str': '1486844025407778820',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 21287,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1486843974941827078/vid/320x320/Xey_TiM0D2JW_AXq.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1486843974941827078/vid/720x720/GRxwvid92g-LfaR8.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1486843974941827078/pl/5jAhcmgi7IXR6nsI.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1486843974941827078/vid/540x540/ls9gjjJR4zlvVdJQ.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Now, he will nominate the first Black woman to serve on the Supreme Court of the United States. ',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1719,
  'favorite_count': 10881,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 27 23:02:00 +0000 2022',
  'id': 1486836920927797248,
  'id_str': '1486836920927797248',
  'full_text': 'Last year, we had the fastest economic growth in 38 years.\n\nWhile there is still more work to do, it’s clear we are finally building an American economy for the 21st century.',
  'truncated': False,
  'display_text_range': [0, 174],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3638,
  'favorite_count': 24786,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 27 14:49:57 +0000 2022',
  'id': 1486713091467268102,
  'id_str': '1486713091467268102',
  'full_text': 'RT @POTUS: In 2021, we had the fastest economic growth since 1984.\n \nThe Biden economic plan is working, folks.',
  'truncated': False,
  'display_text_range': [0, 111],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jan 27 14:30:45 +0000 2022',
   'id': 1486708257968336896,
   'id_str': '1486708257968336896',
   'full_text': 'In 2021, we had the fastest economic growth since 1984.\n \nThe Biden economic plan is working, folks.',
   'truncated': False,
   'display_text_range': [0, 100],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7445,
   'favorite_count': 46916,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7445,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jan 25 16:05:14 +0000 2022',
  'id': 1486007260446867460,
  'id_str': '1486007260446867460',
  'full_text': 'RT @POTUS: A handful of giant corporations are dominating industries from tech to agriculture — and Americans are paying the price.\n \nMy Ad…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jan 25 15:37:28 +0000 2022',
   'id': 1486000271830528006,
   'id_str': '1486000271830528006',
   'full_text': 'A handful of giant corporations are dominating industries from tech to agriculture — and Americans are paying the price.\n \nMy Administration is taking action to change that by building a more competitive economy.',
   'truncated': False,
   'display_text_range': [0, 212],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3217,
   'favorite_count': 18574,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3217,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 24 23:36:41 +0000 2022',
  'id': 1485758484197040142,
  'id_str': '1485758484197040142',
  'full_text': 'RT @POTUS: To those who have not been vaccinated yet: now is the time.\n \nProtect yourself and your family.',
  'truncated': False,
  'display_text_range': [0, 106],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Jan 24 23:27:29 +0000 2022',
   'id': 1485756168911867905,
   'id_str': '1485756168911867905',
   'full_text': 'To those who have not been vaccinated yet: now is the time.\n \nProtect yourself and your family.',
   'truncated': False,
   'display_text_range': [0, 95],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5852,
   'favorite_count': 44988,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5852,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 24 21:26:00 +0000 2022',
  'id': 1485725598995603456,
  'id_str': '1485725598995603456',
  'full_text': 'Good-paying, decent jobs you can raise a family on. \nJobs for the future. \nJobs in every part of the country.\n\nThat’s what made in America is all about.',
  'truncated': False,
  'display_text_range': [0, 152],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3069,
  'favorite_count': 22842,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 24 16:08:02 +0000 2022',
  'id': 1485645579682304002,
  'id_str': '1485645579682304002',
  'full_text': 'Please wear a mask. It’s an important tool to help stop the spread of the Omicron variant.',
  'truncated': False,
  'display_text_range': [0, 90],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 8227,
  'favorite_count': 67523,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jan 23 20:15:01 +0000 2022',
  'id': 1485345346066829318,
  'id_str': '1485345346066829318',
  'full_text': 'Get your booster shot.',
  'truncated': False,
  'display_text_range': [0, 22],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 10315,
  'favorite_count': 96988,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 22 23:53:00 +0000 2022',
  'id': 1485037816446865408,
  'id_str': '1485037816446865408',
  'full_text': 'Folks, we’re not going to give up. Some people may call what is happening now the new normal. I call it a job not yet finished. We are moving toward a time when COVID-19 won’t disrupt our daily lives. We may not be there yet, but we will get there.',
  'truncated': False,
  'display_text_range': [0, 248],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5822,
  'favorite_count': 47918,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 22 21:26:00 +0000 2022',
  'id': 1485000822098382849,
  'id_str': '1485000822098382849',
  'full_text': "The Bipartisan Infrastructure Law is going to upgrade everything from roads, bridges, airports, transit, railroad, to make our economy move faster and reduce prices for families. It's going to create better jobs for Americans across the country. We’ll be moving again.",
  'truncated': False,
  'display_text_range': [0, 268],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2347,
  'favorite_count': 14083,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 22 18:38:18 +0000 2022',
  'id': 1484958617090543620,
  'id_str': '1484958617090543620',
  'full_text': 'RT @POTUS: The constitutional right established in Roe v. Wade 49 years ago today is under assault as never before. We must recommit to str…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jan 22 18:37:31 +0000 2022',
   'id': 1484958420318961668,
   'id_str': '1484958420318961668',
   'full_text': 'The constitutional right established in Roe v. Wade 49 years ago today is under assault as never before. We must recommit to strengthening access to reproductive care, defending the right established by Roe, and protecting the freedom of all people to build their own future.',
   'truncated': False,
   'display_text_range': [0, 275],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6337,
   'favorite_count': 35452,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6337,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 22 17:30:34 +0000 2022',
  'id': 1484941573796286466,
  'id_str': '1484941573796286466',
  'full_text': 'RT @POTUS: Jill and I are saddened to hear two NYPD officers were shot last night — one fatally. We’re keeping them and their families in o…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jan 22 17:30:00 +0000 2022',
   'id': 1484941431198388228,
   'id_str': '1484941431198388228',
   'full_text': 'Jill and I are saddened to hear two NYPD officers were shot last night — one fatally. We’re keeping them and their families in our prayers. Officers put on the badge and head into harm’s way every day. We’re grateful to them and their families for their extraordinary sacrifice.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4598,
   'favorite_count': 42410,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4598,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 22 00:08:12 +0000 2022',
  'id': 1484679250984804353,
  'id_str': '1484679250984804353',
  'full_text': 'There’s a clear choice in the midterms: there’s a party that works for people and is focused on the future—and a party that works for one man and is focused on relitigating the past. https://t.co/j82xpPppwx',
  'truncated': False,
  'display_text_range': [0, 182],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1484679207066247173,
     'id_str': '1484679207066247173',
     'indices': [183, 206],
     'media_url': 'http://pbs.twimg.com/media/FJqj6HdXIAUkEYE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJqj6HdXIAUkEYE.jpg',
     'url': 'https://t.co/j82xpPppwx',
     'display_url': 'pic.twitter.com/j82xpPppwx',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1484679250984804353/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1484679207066247173,
     'id_str': '1484679207066247173',
     'indices': [183, 206],
     'media_url': 'http://pbs.twimg.com/media/FJqj6HdXIAUkEYE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJqj6HdXIAUkEYE.jpg',
     'url': 'https://t.co/j82xpPppwx',
     'display_url': 'pic.twitter.com/j82xpPppwx',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1484679250984804353/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 33533,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484679207066247173/vid/540x540/HD7dEXejp-b1FP75.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1484679207066247173/pl/S_Outmn95jUz3V4I.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484679207066247173/vid/320x320/LXBwDAzq2WjiPhtG.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484679207066247173/vid/720x720/grEshPryTa0TwJK0.mp4?tag=14'}]},
     'additional_media_info': {'title': 'The choice is clear',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2390,
  'favorite_count': 11641,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 21 22:14:15 +0000 2022',
  'id': 1484650575262363652,
  'id_str': '1484650575262363652',
  'full_text': 'Over the last year, we have seen the grit and determination of the American people in the face of some of the biggest challenges. But I believe the best days of our country are ahead of us. We will get through this. https://t.co/ViiocVN6Oc',
  'truncated': False,
  'display_text_range': [0, 215],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1484650514885271554,
     'id_str': '1484650514885271554',
     'indices': [216, 239],
     'media_url': 'http://pbs.twimg.com/media/FJqJ0-AX0AEoR74.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJqJ0-AX0AEoR74.jpg',
     'url': 'https://t.co/ViiocVN6Oc',
     'display_url': 'pic.twitter.com/ViiocVN6Oc',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1484650575262363652/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1484650514885271554,
     'id_str': '1484650514885271554',
     'indices': [216, 239],
     'media_url': 'http://pbs.twimg.com/media/FJqJ0-AX0AEoR74.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJqJ0-AX0AEoR74.jpg',
     'url': 'https://t.co/ViiocVN6Oc',
     'display_url': 'pic.twitter.com/ViiocVN6Oc',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1484650575262363652/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 44611,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484650514885271554/vid/320x320/0AtG7YXnGdE86UWx.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484650514885271554/vid/540x540/5hVZhXjyfSUveBSM.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1484650514885271554/pl/Nvtzvk1yvBGd23hc.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484650514885271554/vid/720x720/lTM5e7dtHWDv314l.mp4?tag=14'}]},
     'additional_media_info': {'title': 'We will get through this',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1117,
  'favorite_count': 7258,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 21 18:17:16 +0000 2022',
  'id': 1484590939196862464,
  'id_str': '1484590939196862464',
  'full_text': 'While the Omicron variant may be a cause for concern, it’s not cause for panic. Between vaccines and boosters to masks and at-home tests, we have the tools to save lives and keep our businesses and schools open. https://t.co/8aqqDGmCVJ',
  'truncated': False,
  'display_text_range': [0, 211],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1484590872016662536,
     'id_str': '1484590872016662536',
     'indices': [212, 235],
     'media_url': 'http://pbs.twimg.com/media/FJpTlZKWUAom1Ra.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJpTlZKWUAom1Ra.jpg',
     'url': 'https://t.co/8aqqDGmCVJ',
     'display_url': 'pic.twitter.com/8aqqDGmCVJ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1484590939196862464/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1800, 'h': 1800, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1484590872016662536,
     'id_str': '1484590872016662536',
     'indices': [212, 235],
     'media_url': 'http://pbs.twimg.com/media/FJpTlZKWUAom1Ra.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJpTlZKWUAom1Ra.jpg',
     'url': 'https://t.co/8aqqDGmCVJ',
     'display_url': 'pic.twitter.com/8aqqDGmCVJ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1484590939196862464/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1800, 'h': 1800, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 47642,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1484590872016662536/pl/mZpP62ED4b8JLgCH.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484590872016662536/vid/540x540/7pMVi6QGuJVtPwsd.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484590872016662536/vid/320x320/ZBgWWHoIvuhpGoDK.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484590872016662536/vid/720x720/elsWBEsFu98xEkW4.mp4?tag=14'}]},
     'additional_media_info': {'title': 'We have the tools to save lives and keep our businesses and schools open',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 953,
  'favorite_count': 6196,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 21 01:44:00 +0000 2022',
  'id': 1484340974813790215,
  'id_str': '1484340974813790215',
  'full_text': 'More than 200 million Americans are vaccinated.\nOne billion free COVID-19 tests are available for Americans to order. \nMore than 400 million free masks will soon be distributed to communities nationwide.\n\nWe will get through this pandemic together.',
  'truncated': False,
  'display_text_range': [0, 248],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1800,
  'favorite_count': 11626,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 23:33:00 +0000 2022',
  'id': 1484308008351924227,
  'id_str': '1484308008351924227',
  'full_text': 'One year ago, we promised that we would move quickly to deliver results for working families. From getting shots in arms and getting people back to work, to passing laws to create jobs and rebuild our crumbling infrastructure, we are making progress for the American people.',
  'truncated': False,
  'display_text_range': [0, 274],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2621,
  'favorite_count': 17763,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 22:52:00 +0000 2022',
  'id': 1484297689906958340,
  'id_str': '1484297689906958340',
  'full_text': 'Tune in tonight as Vice President @KamalaHarris and I host a grassroots event to celebrate what we’ve accomplished this past year and what’s next. RSVP now.\nhttps://t.co/tBNkNnRQNw',
  'truncated': False,
  'display_text_range': [0, 180],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'KamalaHarris',
     'name': 'Kamala Harris',
     'id': 30354991,
     'id_str': '30354991',
     'indices': [34, 47]}],
   'urls': [{'url': 'https://t.co/tBNkNnRQNw',
     'expanded_url': 'https://events.democrats.org/event/436654/?utm_source=dncsocial',
     'display_url': 'events.democrats.org/event/436654/?…',
     'indices': [157, 180]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 869,
  'favorite_count': 4818,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 21:42:00 +0000 2022',
  'id': 1484280073620541443,
  'id_str': '1484280073620541443',
  'full_text': 'RT @POTUS: The last year has been a year of challenges, but it’s also been a year of enormous progress. https://t.co/snfEyGWGD4',
  'truncated': False,
  'display_text_range': [0, 127],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1484191197522378755,
     'id_str': '1484191197522378755',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/FJjof2bVgAAYnh2.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJjof2bVgAAYnh2.jpg',
     'url': 'https://t.co/snfEyGWGD4',
     'display_url': 'pic.twitter.com/snfEyGWGD4',
     'expanded_url': 'https://twitter.com/POTUS/status/1484191723916087297/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1484191723916087297,
     'source_status_id_str': '1484191723916087297',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1484191197522378755,
     'id_str': '1484191197522378755',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/FJjof2bVgAAYnh2.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJjof2bVgAAYnh2.jpg',
     'url': 'https://t.co/snfEyGWGD4',
     'display_url': 'pic.twitter.com/snfEyGWGD4',
     'expanded_url': 'https://twitter.com/POTUS/status/1484191723916087297/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1484191723916087297,
     'source_status_id_str': '1484191723916087297',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 52469,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484191197522378755/vid/720x720/BsnCNwM6oGAbnRkb.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484191197522378755/vid/540x540/bELr_eqO_24ZgD3t.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1484191197522378755/pl/U6OtYJ8TlRr1vwNg.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484191197522378755/vid/320x320/RXuggOUSmUV53LB0.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004742,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jan 20 15:50:56 +0000 2022',
   'id': 1484191723916087297,
   'id_str': '1484191723916087297',
   'full_text': 'The last year has been a year of challenges, but it’s also been a year of enormous progress. https://t.co/snfEyGWGD4',
   'truncated': False,
   'display_text_range': [0, 92],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1484191197522378755,
      'id_str': '1484191197522378755',
      'indices': [93, 116],
      'media_url': 'http://pbs.twimg.com/media/FJjof2bVgAAYnh2.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FJjof2bVgAAYnh2.jpg',
      'url': 'https://t.co/snfEyGWGD4',
      'display_url': 'pic.twitter.com/snfEyGWGD4',
      'expanded_url': 'https://twitter.com/POTUS/status/1484191723916087297/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1484191197522378755,
      'id_str': '1484191197522378755',
      'indices': [93, 116],
      'media_url': 'http://pbs.twimg.com/media/FJjof2bVgAAYnh2.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FJjof2bVgAAYnh2.jpg',
      'url': 'https://t.co/snfEyGWGD4',
      'display_url': 'pic.twitter.com/snfEyGWGD4',
      'expanded_url': 'https://twitter.com/POTUS/status/1484191723916087297/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 52469,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1484191197522378755/vid/720x720/BsnCNwM6oGAbnRkb.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1484191197522378755/vid/540x540/bELr_eqO_24ZgD3t.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1484191197522378755/pl/U6OtYJ8TlRr1vwNg.m3u8?tag=14&container=fmp4'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1484191197522378755/vid/320x320/RXuggOUSmUV53LB0.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1699,
   'favorite_count': 9761,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1699,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 20:33:01 +0000 2022',
  'id': 1484262714130288648,
  'id_str': '1484262714130288648',
  'full_text': 'One year ago, we started to write an American story of hope, not fear. \nOf unity, not division. \nOf light, not darkness.\n\nAn American story of decency and dignity.\nOf love and of healing.\nOf greatness and of goodness.\n\nMay this be the story that continues to guide us forward.',
  'truncated': False,
  'display_text_range': [0, 276],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2384,
  'favorite_count': 12946,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 17:23:58 +0000 2022',
  'id': 1484215137284333573,
  'id_str': '1484215137284333573',
  'full_text': "I've never been more optimistic about America's future. \nhttps://t.co/UzOdpHW5RB",
  'truncated': False,
  'display_text_range': [0, 80],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1484181006554783747,
     'id_str': '1484181006554783747',
     'indices': [57, 80],
     'media_url': 'http://pbs.twimg.com/media/FJjjRbPVkAYUvqG.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJjjRbPVkAYUvqG.jpg',
     'url': 'https://t.co/UzOdpHW5RB',
     'display_url': 'pic.twitter.com/UzOdpHW5RB',
     'expanded_url': 'https://twitter.com/BidenInaugural/status/1484186618348986375/video/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 480, 'h': 270, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 480, 'h': 270, 'resize': 'fit'},
      'large': {'w': 480, 'h': 270, 'resize': 'fit'}},
     'source_status_id': 1484186618348986375,
     'source_status_id_str': '1484186618348986375',
     'source_user_id': 1333168873860984832,
     'source_user_id_str': '1333168873860984832'}]},
  'extended_entities': {'media': [{'id': 1484181006554783747,
     'id_str': '1484181006554783747',
     'indices': [57, 80],
     'media_url': 'http://pbs.twimg.com/media/FJjjRbPVkAYUvqG.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJjjRbPVkAYUvqG.jpg',
     'url': 'https://t.co/UzOdpHW5RB',
     'display_url': 'pic.twitter.com/UzOdpHW5RB',
     'expanded_url': 'https://twitter.com/BidenInaugural/status/1484186618348986375/video/1',
     'type': 'video',
     'sizes': {'medium': {'w': 480, 'h': 270, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 480, 'h': 270, 'resize': 'fit'},
      'large': {'w': 480, 'h': 270, 'resize': 'fit'}},
     'source_status_id': 1484186618348986375,
     'source_status_id_str': '1484186618348986375',
     'source_user_id': 1333168873860984832,
     'source_user_id_str': '1333168873860984832',
     'video_info': {'aspect_ratio': [16, 9],
      'duration_millis': 120120,
      'variants': [{'bitrate': 2176000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484181006554783747/vid/1280x720/BudnIzRV0VM_j8jo.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1484181006554783747/pl/pXvc0J0vDqfLKMhJ.m3u8?tag=14&container=fmp4'},
       {'bitrate': 288000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484181006554783747/vid/480x270/6eVzPwofXp2xxzd0.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484181006554783747/vid/640x360/JA5xWgS1GYVKTsaj.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Year One',
      'description': "America, we're stronger than one year ago.",
      'call_to_actions': {'watch_now': {'url': 'https://yearone.watch/'}},
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 1333168873860984832,
       'id_str': '1333168873860984832',
       'name': 'Biden Inaugural Committee',
       'screen_name': 'BidenInaugural',
       'location': '',
       'description': 'Thank you for joining us for the historic inauguration of @POTUS and @VP. A new chapter has begun. #Inauguration2021',
       'url': 'https://t.co/kY5AyRiCZK',
       'entities': {'url': {'urls': [{'url': 'https://t.co/kY5AyRiCZK',
           'expanded_url': 'https://bideninaugural.org/watch',
           'display_url': 'bideninaugural.org/watch',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 273940,
       'friends_count': 5,
       'listed_count': 739,
       'created_at': 'Sun Nov 29 22:00:08 +0000 2020',
       'favourites_count': 73,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 329,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1333198559089405953/T3RhkQz7_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1333198559089405953/T3RhkQz7_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1333168873860984832/1606695557',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1069,
  'favorite_count': 5853,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 17:07:01 +0000 2022',
  'id': 1484210869928144901,
  'id_str': '1484210869928144901',
  'full_text': 'RT @POTUS: 210 million Americans fully vaccinated.\n96% of schools open.\n6.4 million jobs created.\n3.9% unemployment.\n5 million Americans ga…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jan 20 14:15:43 +0000 2022',
   'id': 1484167762859773953,
   'id_str': '1484167762859773953',
   'full_text': '210 million Americans fully vaccinated.\n96% of schools open.\n6.4 million jobs created.\n3.9% unemployment.\n5 million Americans gained health insurance.\n\nWe had a historic first year — and we’re going to keep building on our progress in the years ahead.',
   'truncated': False,
   'display_text_range': [0, 251],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6243,
   'favorite_count': 30260,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6243,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 16:18:01 +0000 2022',
  'id': 1484198537306984451,
  'id_str': '1484198537306984451',
  'full_text': 'Our first year was the greatest year of job growth in modern American history, including over 6 million jobs added—more in one year than ever on record. We have more work ahead, but I know we can do it together.',
  'truncated': False,
  'display_text_range': [0, 211],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2833,
  'favorite_count': 19076,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 14:40:23 +0000 2022',
  'id': 1484173968051425281,
  'id_str': '1484173968051425281',
  'full_text': 'January 20, 2021 was a day of renewal and resolve for our nation. With hope, we set our sights on a nation we knew we could be and must be. \n\nAnd it was just the beginning. https://t.co/VDhqch8xU9',
  'truncated': False,
  'display_text_range': [0, 172],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1484173875864817664,
     'id_str': '1484173875864817664',
     'indices': [173, 196],
     'media_url': 'http://pbs.twimg.com/media/FJjZEHYVQAMUoaJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJjZEHYVQAMUoaJ.jpg',
     'url': 'https://t.co/VDhqch8xU9',
     'display_url': 'pic.twitter.com/VDhqch8xU9',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1484173968051425281/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1484173875864817664,
     'id_str': '1484173875864817664',
     'indices': [173, 196],
     'media_url': 'http://pbs.twimg.com/media/FJjZEHYVQAMUoaJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FJjZEHYVQAMUoaJ.jpg',
     'url': 'https://t.co/VDhqch8xU9',
     'display_url': 'pic.twitter.com/VDhqch8xU9',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1484173968051425281/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 31097,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1484173875864817664/pl/1QKAeWLzXdVPrO9w.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484173875864817664/vid/540x540/vlHgk86BZGTVNZ9N.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484173875864817664/vid/320x320/JSFV6RZ3l1ANQpkT.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1484173875864817664/vid/720x720/ilxaoUgitTHzAuuz.mp4?tag=14'}]},
     'additional_media_info': {'title': 'One Year Ago',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1287,
  'favorite_count': 8940,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 03:42:49 +0000 2022',
  'id': 1484008488913326081,
  'id_str': '1484008488913326081',
  'full_text': 'RT @POTUS: I am profoundly disappointed that the Senate has failed to stand up for our democracy. I am disappointed — but I am not deterred…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jan 20 03:41:56 +0000 2022',
   'id': 1484008266116050948,
   'id_str': '1484008266116050948',
   'full_text': 'I am profoundly disappointed that the Senate has failed to stand up for our democracy. I am disappointed — but I am not deterred.\n \nWe will continue to advance necessary legislation and push for Senate procedural changes that will protect the fundamental right to vote.',
   'truncated': False,
   'display_text_range': [0, 269],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 13787,
   'favorite_count': 96199,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 13787,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 20 01:11:00 +0000 2022',
  'id': 1483970281685270534,
  'id_str': '1483970281685270534',
  'full_text': 'From getting more than 200 million Americans fully vaccinated to the addition of over 6 million new jobs, we’ve made record progress for working families over the last year.',
  'truncated': False,
  'display_text_range': [0, 173],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3497,
  'favorite_count': 26255,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jan 19 17:30:05 +0000 2022',
  'id': 1483854287776141318,
  'id_str': '1483854287776141318',
  'full_text': 'A year ago, we set out to write the next chapter in the American story.\n\nJoin me and Vice President @KamalaHarris this Thursday for a virtual event as we reflect on our first year and look ahead to the future.\nhttps://t.co/tBNkNnRQNw',
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'KamalaHarris',
     'name': 'Kamala Harris',
     'id': 30354991,
     'id_str': '30354991',
     'indices': [100, 113]}],
   'urls': [{'url': 'https://t.co/tBNkNnRQNw',
     'expanded_url': 'https://events.democrats.org/event/436654/?utm_source=dncsocial',
     'display_url': 'events.democrats.org/event/436654/?…',
     'indices': [210, 233]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1156,
  'favorite_count': 7114,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Jan 18 14:30:41 +0000 2022',
  'id': 1483446750169997313,
  'id_str': '1483446750169997313',
  'full_text': 'RT @POTUS: Jim Crow 2.0 is about two insidious things: voter suppression and election subversion. It’s about making it harder to vote, who…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jan 18 14:21:40 +0000 2022',
   'id': 1483444483140329479,
   'id_str': '1483444483140329479',
   'full_text': 'Jim Crow 2.0 is about two insidious things: voter suppression and election subversion. It’s about making it harder to vote, who gets to count the vote, and whether your vote counts at all.\n\nWe have to pass the Freedom to Vote Act and John Lewis Voting Rights Advancement Act.',
   'truncated': False,
   'display_text_range': [0, 275],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 16610,
   'favorite_count': 76530,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 16610,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 17 16:45:04 +0000 2022',
  'id': 1483118182965690372,
  'id_str': '1483118182965690372',
  'full_text': 'On Martin Luther King, Jr. Day, we must protect the hard-fought gains he helped achieve—and continue his unfinished struggle for a freer and more just society by raising our voices to confront abuses of power, challenge hate and discrimination, and protect the right to vote.',
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5618,
  'favorite_count': 34722,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 17 14:50:00 +0000 2022',
  'id': 1483089224073162753,
  'id_str': '1483089224073162753',
  'full_text': 'RT @POTUS: On Martin Luther King Jr. Day, we must commit to his unfinished work – of delivering jobs and justice, and protecting the sacred…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Jan 17 13:12:29 +0000 2022',
   'id': 1483064683372466179,
   'id_str': '1483064683372466179',
   'full_text': 'On Martin Luther King Jr. Day, we must commit to his unfinished work – of delivering jobs and justice, and protecting the sacred right to vote. https://t.co/kS1sRnGAwS',
   'truncated': False,
   'display_text_range': [0, 143],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1483064530838114305,
      'id_str': '1483064530838114305',
      'indices': [144, 167],
      'media_url': 'http://pbs.twimg.com/media/FJTndpiXsAMZzH4.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FJTndpiXsAMZzH4.jpg',
      'url': 'https://t.co/kS1sRnGAwS',
      'display_url': 'pic.twitter.com/kS1sRnGAwS',
      'expanded_url': 'https://twitter.com/POTUS/status/1483064683372466179/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1152, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1483064530838114305,
      'id_str': '1483064530838114305',
      'indices': [144, 167],
      'media_url': 'http://pbs.twimg.com/media/FJTndpiXsAMZzH4.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FJTndpiXsAMZzH4.jpg',
      'url': 'https://t.co/kS1sRnGAwS',
      'display_url': 'pic.twitter.com/kS1sRnGAwS',
      'expanded_url': 'https://twitter.com/POTUS/status/1483064683372466179/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1152, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 158950,
       'variants': [{'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1483064530838114305/vid/1280x720/eoNpB5WR8fHumLGL.mp4?tag=14'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1483064530838114305/vid/480x270/FtLZcavHgg-GFA1h.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1483064530838114305/vid/640x360/mr8hTSRuoPEemuKE.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1483064530838114305/pl/nz9fcjPPQoHG64Cq.m3u8?tag=14&container=fmp4'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5671,
   'favorite_count': 28021,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5671,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jan 16 18:53:00 +0000 2022',
  'id': 1482787992146259968,
  'id_str': '1482787992146259968',
  'full_text': "If you have not gotten vaccinated, do it. Personal choice impacts all of us—our hospitals, our country. \n\nCOVID-19 is one of the most formidable things America's ever faced. We have to work together, not against each other. We are the United States of America. We can do this.",
  'truncated': False,
  'display_text_range': [0, 276],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4430,
  'favorite_count': 31527,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 15 16:57:00 +0000 2022',
  'id': 1482396411236917253,
  'id_str': '1482396411236917253',
  'full_text': "Repairing and rebuilding our nation's bridges\nDelivering clean water for every American\nExpanding access to high-speed internet \nBuilding resilience against severe weather\n\nThe Bipartisan Infrastructure Law is making critical investments that we've never seen before.",
  'truncated': False,
  'display_text_range': [0, 267],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2164,
  'favorite_count': 12979,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 15 01:42:00 +0000 2022',
  'id': 1482166143494369284,
  'id_str': '1482166143494369284',
  'full_text': 'Across the country, 45,000 of our bridges are in desperate need of repair. My Bipartisan Infrastructure Law includes $40 billion to make those repairs.',
  'truncated': False,
  'display_text_range': [0, 151],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3419,
  'favorite_count': 26031,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 14 16:27:00 +0000 2022',
  'id': 1482026474102300673,
  'id_str': '1482026474102300673',
  'full_text': 'I’ve said it before: If you are unvaccinated, and test positive, you are 17 times more likely to get hospitalized.\n\nThe best way to keep yourself and your family safe is to get vaccinated, boosted, and wear a mask indoors and in public spaces.',
  'truncated': False,
  'display_text_range': [0, 243],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5952,
  'favorite_count': 39355,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 14 14:34:57 +0000 2022',
  'id': 1481998275800711179,
  'id_str': '1481998275800711179',
  'full_text': 'RT @POTUS: Great news, folks. A record 10 million people have enrolled in health care through https://t.co/gRX1fGFEzj since November 1st.…',
  'truncated': False,
  'display_text_range': [0, 138],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/gRX1fGFEzj',
     'expanded_url': 'http://HealthCare.gov',
     'display_url': 'HealthCare.gov',
     'indices': [94, 117]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Jan 14 14:33:13 +0000 2022',
   'id': 1481997836233363457,
   'id_str': '1481997836233363457',
   'full_text': 'Great news, folks. A record 10 million people have enrolled in health care through https://t.co/gRX1fGFEzj since November 1st.\n \nThis Saturday, January 15th, is the last day to sign up, so be sure to go to https://t.co/gRX1fGFEzj before midnight on the 15th and get covered.',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/gRX1fGFEzj',
      'expanded_url': 'http://HealthCare.gov',
      'display_url': 'HealthCare.gov',
      'indices': [83, 106]},
     {'url': 'https://t.co/gRX1fGFEzj',
      'expanded_url': 'http://HealthCare.gov',
      'display_url': 'HealthCare.gov',
      'indices': [206, 229]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3038,
   'favorite_count': 15033,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3038,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 13 17:59:01 +0000 2022',
  'id': 1481687240011091968,
  'id_str': '1481687240011091968',
  'full_text': '21st century Jim Crow is about voter suppression and subversion—it’s about who gets to vote, who counts your vote, and whether your vote is counted.\n\nThe Senate must pass the John Lewis Voting Rights Advancement Act and the Freedom to Vote Act.',
  'truncated': False,
  'display_text_range': [0, 244],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5041,
  'favorite_count': 23098,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 13 15:57:02 +0000 2022',
  'id': 1481656544878120961,
  'id_str': '1481656544878120961',
  'full_text': 'RT @POTUS: I am directing my team to procure 500 million more COVID-19 at-home, rapid tests. \n\nThat will mean one billion tests to be distr…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jan 13 15:53:36 +0000 2022',
   'id': 1481655677734977537,
   'id_str': '1481655677734977537',
   'full_text': 'I am directing my team to procure 500 million more COVID-19 at-home, rapid tests. \n\nThat will mean one billion tests to be distributed for free.',
   'truncated': False,
   'display_text_range': [0, 144],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5057,
   'favorite_count': 40308,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5057,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 13 00:49:00 +0000 2022',
  'id': 1481428029805060102,
  'id_str': '1481428029805060102',
  'full_text': 'It’s not enough to praise Congressman John Lewis’ memory. In order to follow in his footsteps, we must translate eulogy into action and support the bill in his name.\n\nThe Senate must pass the John Lewis Voting Rights Advancement Act and the Freedom to Vote Act.',
  'truncated': False,
  'display_text_range': [0, 261],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3704,
  'favorite_count': 20915,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jan 12 22:18:13 +0000 2022',
  'id': 1481390084696035332,
  'id_str': '1481390084696035332',
  'full_text': 'Last year alone, 34 laws were enacted in 19 states with provisions restricting voting rights.\n\nWhat’s their end game? To turn the will of the voters into a mere suggestion. https://t.co/T9ufFTgqYz',
  'truncated': False,
  'display_text_range': [0, 172],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1481390030379757570,
     'id_str': '1481390030379757570',
     'indices': [173, 196],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1481390030379757570/img/dyfAmXlNu5ZJU8li.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1481390030379757570/img/dyfAmXlNu5ZJU8li.jpg',
     'url': 'https://t.co/T9ufFTgqYz',
     'display_url': 'pic.twitter.com/T9ufFTgqYz',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1481390084696035332/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1481390030379757570,
     'id_str': '1481390030379757570',
     'indices': [173, 196],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1481390030379757570/img/dyfAmXlNu5ZJU8li.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1481390030379757570/img/dyfAmXlNu5ZJU8li.jpg',
     'url': 'https://t.co/T9ufFTgqYz',
     'display_url': 'pic.twitter.com/T9ufFTgqYz',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1481390084696035332/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 30096,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1481390030379757570/vid/540x540/Txl_g2yy4D_Dvsxa.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1481390030379757570/vid/720x720/zbLSRWZ3X27LG-jU.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1481390030379757570/pl/clJRVRwlCRDrdGVU.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1481390030379757570/vid/320x320/n-nXmn_gdA4u9EkD.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Republicans want to turn the will of the voters into a mere suggestion.',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2166,
  'favorite_count': 9690,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jan 12 19:15:16 +0000 2022',
  'id': 1481344042562695172,
  'id_str': '1481344042562695172',
  'full_text': 'The right to vote and to have that vote counted is democracy’s threshold liberty. Without it, nothing is possible.\n\nThis is about all of us. It’s about the people. It’s about America. https://t.co/nfBiII7uvk',
  'truncated': False,
  'display_text_range': [0, 183],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1481343982336724994,
     'id_str': '1481343982336724994',
     'indices': [184, 207],
     'media_url': 'http://pbs.twimg.com/media/FI7KjarXEAEvUZA.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FI7KjarXEAEvUZA.jpg',
     'url': 'https://t.co/nfBiII7uvk',
     'display_url': 'pic.twitter.com/nfBiII7uvk',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1481344042562695172/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1481343982336724994,
     'id_str': '1481343982336724994',
     'indices': [184, 207],
     'media_url': 'http://pbs.twimg.com/media/FI7KjarXEAEvUZA.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FI7KjarXEAEvUZA.jpg',
     'url': 'https://t.co/nfBiII7uvk',
     'display_url': 'pic.twitter.com/nfBiII7uvk',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1481344042562695172/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 25992,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1481343982336724994/pl/OQp9GqlfXp52cXPY.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1481343982336724994/vid/320x320/w5X0wC6kyskxbW3V.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1481343982336724994/vid/720x720/GvB1lagPtfn_Qd3s.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1481343982336724994/vid/540x540/wqYjC6avsmJ0g3zs.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden on Voting Rights',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1462,
  'favorite_count': 8248,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jan 12 16:21:00 +0000 2022',
  'id': 1481300188606222340,
  'id_str': '1481300188606222340',
  'full_text': "I'll be clear: to protect our democracy, I support changing the Senate rules to prevent a minority of senators from blocking action on voting rights.",
  'truncated': False,
  'display_text_range': [0, 149],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 8409,
  'favorite_count': 59901,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jan 11 22:22:08 +0000 2022',
  'id': 1481028679685873664,
  'id_str': '1481028679685873664',
  'full_text': 'RT @POTUS: When it comes to protecting majority rule in America, a majority should rule in the United States Senate.\n \nTo protect our democ…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jan 11 21:35:14 +0000 2022',
   'id': 1481016878357266434,
   'id_str': '1481016878357266434',
   'full_text': 'When it comes to protecting majority rule in America, a majority should rule in the United States Senate.\n \nTo protect our democracy, I support changing the Senate rules to prevent a minority of Senators from blocking action on voting rights.',
   'truncated': False,
   'display_text_range': [0, 242],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8603,
   'favorite_count': 50833,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8603,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jan 11 21:12:56 +0000 2022',
  'id': 1481011265556430851,
  'id_str': '1481011265556430851',
  'full_text': 'RT @POTUS: Tune in as I deliver remarks on the urgent need to pass legislation to protect the constitutional right to vote and the integrit…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jan 11 21:03:11 +0000 2022',
   'id': 1481008812463173632,
   'id_str': '1481008812463173632',
   'full_text': 'Tune in as I deliver remarks on the urgent need to pass legislation to protect the constitutional right to vote and the integrity of our elections. https://t.co/kz4fG9emEN',
   'truncated': False,
   'display_text_range': [0, 171],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/kz4fG9emEN',
      'expanded_url': 'https://twitter.com/i/broadcasts/1LyxBokmDZaKN',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [148, 171]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1813,
   'favorite_count': 8086,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1813,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jan 11 14:52:17 +0000 2022',
  'id': 1480915474464526345,
  'id_str': '1480915474464526345',
  'full_text': 'RT @POTUS: History has never been kind to those who have sided with voter suppression over voting rights. And it will not be kind to those…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jan 11 14:32:26 +0000 2022',
   'id': 1480910476217397259,
   'id_str': '1480910476217397259',
   'full_text': 'History has never been kind to those who have sided with voter suppression over voting rights. And it will not be kind to those who fail to defend the right to vote.\n \nCongress must debate and vote on the Freedom to Vote Act and the John Lewis Voting Rights Advancement Act.',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7024,
   'favorite_count': 37034,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7024,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 10 23:09:24 +0000 2022',
  'id': 1480678187722059777,
  'id_str': '1480678187722059777',
  'full_text': 'RT @POTUS: January 6, 2021 made it clear: there is a dagger at the throat of our democracy.\n \nTomorrow, I’m headed to Atlanta where I will…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Jan 10 23:03:18 +0000 2022',
   'id': 1480676653940490253,
   'id_str': '1480676653940490253',
   'full_text': 'January 6, 2021 made it clear: there is a dagger at the throat of our democracy.\n \nTomorrow, I’m headed to Atlanta where I will discuss the road ahead in our fight for voting rights.',
   'truncated': False,
   'display_text_range': [0, 182],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6586,
   'favorite_count': 44376,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6586,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jan 09 22:52:13 +0000 2022',
  'id': 1480311475638046724,
  'id_str': '1480311475638046724',
  'full_text': "Since the start of my presidency, Republicans have done nothing but try to obstruct the country's economic recovery. https://t.co/WivbP7JWNF",
  'truncated': False,
  'display_text_range': [0, 116],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1480311422605275139,
     'id_str': '1480311422605275139',
     'indices': [117, 140],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1480311422605275139/img/Lh64BXyE_1-o8_Fh.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1480311422605275139/img/Lh64BXyE_1-o8_Fh.jpg',
     'url': 'https://t.co/WivbP7JWNF',
     'display_url': 'pic.twitter.com/WivbP7JWNF',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1480311475638046724/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1480311422605275139,
     'id_str': '1480311422605275139',
     'indices': [117, 140],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1480311422605275139/img/Lh64BXyE_1-o8_Fh.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1480311422605275139/img/Lh64BXyE_1-o8_Fh.jpg',
     'url': 'https://t.co/WivbP7JWNF',
     'display_url': 'pic.twitter.com/WivbP7JWNF',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1480311475638046724/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 36870,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1480311422605275139/vid/540x540/peSqchAYutPmzGUk.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1480311422605275139/vid/720x720/XQIHU_MwfdFzHmMD.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1480311422605275139/pl/kREHaddV3CUpSRYi.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1480311422605275139/vid/320x320/56c3jS0iH13oZ59K.mp4?tag=14'}]},
     'additional_media_info': {'title': "Republicans have done nothing but try to obstruct the country's economic recovery.",
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3875,
  'favorite_count': 20102,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Jan 09 16:08:00 +0000 2022',
  'id': 1480209753095688197,
  'id_str': '1480209753095688197',
  'full_text': "From day one, my economic agenda has been different. It's been about taking a fundamentally new approach to our economy: one that sees the prosperity of working families as a solution, not the problem.",
  'truncated': False,
  'display_text_range': [0, 201],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4383,
  'favorite_count': 31993,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jan 09 00:41:36 +0000 2022',
  'id': 1479976616252039168,
  'id_str': '1479976616252039168',
  'full_text': 'RT @POTUS: Harry Reid and I grew up on different sides of the country, but we came from the same place where certain values run deep. Loyal…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Jan 09 00:37:14 +0000 2022',
   'id': 1479975516358815744,
   'id_str': '1479975516358815744',
   'full_text': 'Harry Reid and I grew up on different sides of the country, but we came from the same place where certain values run deep. Loyalty. Faith. Resolve. Service.\n \nHe was a dear friend, a great American, and a giant of our history. May he rest in peace. https://t.co/qGvDhq15hX',
   'truncated': False,
   'display_text_range': [0, 248],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1479975513271767042,
      'id_str': '1479975513271767042',
      'indices': [249, 272],
      'media_url': 'http://pbs.twimg.com/media/FInt41jXEAIhUKJ.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FInt41jXEAIhUKJ.jpg',
      'url': 'https://t.co/qGvDhq15hX',
      'display_url': 'pic.twitter.com/qGvDhq15hX',
      'expanded_url': 'https://twitter.com/POTUS/status/1479975516358815744/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1479975513271767042,
      'id_str': '1479975513271767042',
      'indices': [249, 272],
      'media_url': 'http://pbs.twimg.com/media/FInt41jXEAIhUKJ.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FInt41jXEAIhUKJ.jpg',
      'url': 'https://t.co/qGvDhq15hX',
      'display_url': 'pic.twitter.com/qGvDhq15hX',
      'expanded_url': 'https://twitter.com/POTUS/status/1479975516358815744/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3675,
   'favorite_count': 35300,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3675,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 08 15:50:02 +0000 2022',
  'id': 1479842843644645377,
  'id_str': '1479842843644645377',
  'full_text': 'RT @POTUS: Yesterday afternoon, I visited Colorado to see the aftermath of the recent wildfire firsthand and meet with those impacted. As I…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jan 08 15:22:31 +0000 2022',
   'id': 1479835919398096896,
   'id_str': '1479835919398096896',
   'full_text': 'Yesterday afternoon, I visited Colorado to see the aftermath of the recent wildfire firsthand and meet with those impacted. As I told folks on the ground: The federal government is not going away. We’re here for you as you recover and rebuild. https://t.co/oxrxA6u7Sx',
   'truncated': False,
   'display_text_range': [0, 243],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1479835898598600710,
      'id_str': '1479835898598600710',
      'indices': [244, 267],
      'media_url': 'http://pbs.twimg.com/media/FIlu6MXXMAYrdI8.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FIlu6MXXMAYrdI8.jpg',
      'url': 'https://t.co/oxrxA6u7Sx',
      'display_url': 'pic.twitter.com/oxrxA6u7Sx',
      'expanded_url': 'https://twitter.com/POTUS/status/1479835919398096896/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1366, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1479835898598600710,
      'id_str': '1479835898598600710',
      'indices': [244, 267],
      'media_url': 'http://pbs.twimg.com/media/FIlu6MXXMAYrdI8.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FIlu6MXXMAYrdI8.jpg',
      'url': 'https://t.co/oxrxA6u7Sx',
      'display_url': 'pic.twitter.com/oxrxA6u7Sx',
      'expanded_url': 'https://twitter.com/POTUS/status/1479835919398096896/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1366, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}}},
     {'id': 1479835905661837316,
      'id_str': '1479835905661837316',
      'indices': [244, 267],
      'media_url': 'http://pbs.twimg.com/media/FIlu6mrXoAQ_y6r.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FIlu6mrXoAQ_y6r.jpg',
      'url': 'https://t.co/oxrxA6u7Sx',
      'display_url': 'pic.twitter.com/oxrxA6u7Sx',
      'expanded_url': 'https://twitter.com/POTUS/status/1479835919398096896/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}},
     {'id': 1479835912615907328,
      'id_str': '1479835912615907328',
      'indices': [244, 267],
      'media_url': 'http://pbs.twimg.com/media/FIlu7AlWUAAVKb8.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FIlu7AlWUAAVKb8.jpg',
      'url': 'https://t.co/oxrxA6u7Sx',
      'display_url': 'pic.twitter.com/oxrxA6u7Sx',
      'expanded_url': 'https://twitter.com/POTUS/status/1479835919398096896/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3932,
   'favorite_count': 32226,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3932,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 08 02:27:38 +0000 2022',
  'id': 1479640911462248448,
  'id_str': '1479640911462248448',
  'full_text': 'RT @POTUS: The son of tomato farmers in the Bahamas, Sidney Poitier became the first Black man to win the Academy Award for Best Actor — bu…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jan 08 02:26:10 +0000 2022',
   'id': 1479640542413787145,
   'id_str': '1479640542413787145',
   'full_text': 'The son of tomato farmers in the Bahamas, Sidney Poitier became the first Black man to win the Academy Award for Best Actor — but the trail he blazed extended leaps and bounds beyond his background or profession. Jill and I send our love and prayers to his loved ones.',
   'truncated': False,
   'display_text_range': [0, 268],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5883,
   'favorite_count': 56890,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5883,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 08 01:48:22 +0000 2022',
  'id': 1479631030709624834,
  'id_str': '1479631030709624834',
  'full_text': 'I believe the power of the presidency and the purpose is to unite this nation, not divide it. https://t.co/RzELTfTV9a',
  'truncated': False,
  'display_text_range': [0, 93],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1479630938812424192,
     'id_str': '1479630938812424192',
     'indices': [94, 117],
     'media_url': 'http://pbs.twimg.com/media/FIi0kt9WUAU8uT2.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIi0kt9WUAU8uT2.jpg',
     'url': 'https://t.co/RzELTfTV9a',
     'display_url': 'pic.twitter.com/RzELTfTV9a',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479631030709624834/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1800, 'h': 1800, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1479630938812424192,
     'id_str': '1479630938812424192',
     'indices': [94, 117],
     'media_url': 'http://pbs.twimg.com/media/FIi0kt9WUAU8uT2.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIi0kt9WUAU8uT2.jpg',
     'url': 'https://t.co/RzELTfTV9a',
     'display_url': 'pic.twitter.com/RzELTfTV9a',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479631030709624834/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1800, 'h': 1800, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 59426,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1479630938812424192/pl/fK8dOqpwNCMOxWla.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479630938812424192/vid/540x540/Z7F_cl4V8pZP4Svk.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479630938812424192/vid/720x720/5WXUAVYL3c_ByOmv.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479630938812424192/vid/320x320/CjU0XixWliH9TRkd.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden Speaks on the Anniversary of the Jan. 6 Insurrection',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2110,
  'favorite_count': 14248,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 07 23:29:00 +0000 2022',
  'id': 1479595957343895553,
  'id_str': '1479595957343895553',
  'full_text': 'Right now, in states throughout the country, new laws are being written not to protect the vote, but to deny it. The former president and his supporters want not only to suppress the vote, but to subvert it. \n\nIt’s wrong, undemocratic, and un-American.',
  'truncated': False,
  'display_text_range': [0, 252],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6689,
  'favorite_count': 36245,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 07 22:23:15 +0000 2022',
  'id': 1479579411812954122,
  'id_str': '1479579411812954122',
  'full_text': 'Today’s a historic day for America’s economic recovery. https://t.co/PG8EAIk415',
  'truncated': False,
  'display_text_range': [0, 55],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1479579349426884612,
     'id_str': '1479579349426884612',
     'indices': [56, 79],
     'media_url': 'http://pbs.twimg.com/media/FIiFoamXoAA4AqX.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIiFoamXoAA4AqX.jpg',
     'url': 'https://t.co/PG8EAIk415',
     'display_url': 'pic.twitter.com/PG8EAIk415',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479579411812954122/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1479579349426884612,
     'id_str': '1479579349426884612',
     'indices': [56, 79],
     'media_url': 'http://pbs.twimg.com/media/FIiFoamXoAA4AqX.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIiFoamXoAA4AqX.jpg',
     'url': 'https://t.co/PG8EAIk415',
     'display_url': 'pic.twitter.com/PG8EAIk415',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479579411812954122/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 10733,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479579349426884612/vid/320x320/f3csnekwTZcYE3aX.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479579349426884612/vid/720x720/2gPFHXLmNgVZ5ip6.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1479579349426884612/pl/oYbgqUAa24OtjSje.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479579349426884612/vid/540x540/LT64yaYlRuBOutmb.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Today’s a historic day for America’s economic recovery.',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 847,
  'favorite_count': 5759,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 07 21:27:16 +0000 2022',
  'id': 1479565323066134531,
  'id_str': '1479565323066134531',
  'full_text': 'The election of 2020 was the greatest demonstration of democracy in the history of this country. https://t.co/49b2vmejBz',
  'truncated': False,
  'display_text_range': [0, 96],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1479565256456384512,
     'id_str': '1479565256456384512',
     'indices': [97, 120],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1479565256456384512/img/l5z4Dla6gV8xn507.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1479565256456384512/img/l5z4Dla6gV8xn507.jpg',
     'url': 'https://t.co/49b2vmejBz',
     'display_url': 'pic.twitter.com/49b2vmejBz',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479565323066134531/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1479565256456384512,
     'id_str': '1479565256456384512',
     'indices': [97, 120],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1479565256456384512/img/l5z4Dla6gV8xn507.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1479565256456384512/img/l5z4Dla6gV8xn507.jpg',
     'url': 'https://t.co/49b2vmejBz',
     'display_url': 'pic.twitter.com/49b2vmejBz',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479565323066134531/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 67634,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1479565256456384512/pl/5xrTAyKdl1uKjy4Y.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479565256456384512/vid/540x540/I4GvPMCX3T5_CmbM.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479565256456384512/vid/720x720/cMNr5x4M4hZr7d-K.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479565256456384512/vid/320x320/u41q8Cfab-RYEFWs.mp4?tag=14'}]},
     'additional_media_info': {'title': 'The election of 2020 was the greatest demonstration of democracy in the history of this country. ',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1189,
  'favorite_count': 7697,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 07 20:43:00 +0000 2022',
  'id': 1479554183237935113,
  'id_str': '1479554183237935113',
  'full_text': 'Folks, get your booster.',
  'truncated': False,
  'display_text_range': [0, 24],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 10505,
  'favorite_count': 107071,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 07 18:38:00 +0000 2022',
  'id': 1479522725416816641,
  'id_str': '1479522725416816641',
  'full_text': 'The FDA has now authorized booster shots for children ages 12 to 15. Vaccinating our children is the best way to protect them from the Omicron variant.',
  'truncated': False,
  'display_text_range': [0, 151],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2210,
  'favorite_count': 16174,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 07 18:11:18 +0000 2022',
  'id': 1479516003675652102,
  'id_str': '1479516003675652102',
  'full_text': 'We must be absolutely clear about what is true and what is a lie. \n\nThe former president did what no president in the history of this country has ever done: He refused to accept the results of an election and the will of the American people. https://t.co/QCWCcbofUM',
  'truncated': False,
  'display_text_range': [0, 241],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1479515943671902220,
     'id_str': '1479515943671902220',
     'indices': [242, 265],
     'media_url': 'http://pbs.twimg.com/media/FIhL9jIXMAc5IkW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIhL9jIXMAc5IkW.jpg',
     'url': 'https://t.co/QCWCcbofUM',
     'display_url': 'pic.twitter.com/QCWCcbofUM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479516003675652102/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1479515943671902220,
     'id_str': '1479515943671902220',
     'indices': [242, 265],
     'media_url': 'http://pbs.twimg.com/media/FIhL9jIXMAc5IkW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIhL9jIXMAc5IkW.jpg',
     'url': 'https://t.co/QCWCcbofUM',
     'display_url': 'pic.twitter.com/QCWCcbofUM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479516003675652102/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 55388,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479515943671902220/vid/720x720/g1tyl3bRDpusAl5W.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1479515943671902220/pl/0QEdLmOVnDeVnsg6.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479515943671902220/vid/320x320/7ZgySWybxhzn5sIu.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479515943671902220/vid/540x540/nonIZfq2uURhv3Dx.mp4?tag=14'}]},
     'additional_media_info': {'title': 'We must be absolutely clear about what is true and what is a lie.',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2228,
  'favorite_count': 12535,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 07 14:31:01 +0000 2022',
  'id': 1479460570847973378,
  'id_str': '1479460570847973378',
  'full_text': "Folks, I know we're all tired and frustrated about the pandemic.\n\nBut please, wear your mask in public to protect yourself and others. Get vaccinated and boosted. Take advantage of what resources we already have. We’ll get through this—together.\nhttps://t.co/2CbSjLwOcG",
  'truncated': False,
  'display_text_range': [0, 269],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1478758286904205315,
     'id_str': '1478758286904205315',
     'indices': [246, 269],
     'media_url': 'http://pbs.twimg.com/media/FIWa47BWQAUHFWm.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIWa47BWQAUHFWm.jpg',
     'url': 'https://t.co/2CbSjLwOcG',
     'display_url': 'pic.twitter.com/2CbSjLwOcG',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1478758360296177668/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1478758360296177668,
     'source_status_id_str': '1478758360296177668',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1478758286904205315,
     'id_str': '1478758286904205315',
     'indices': [246, 269],
     'media_url': 'http://pbs.twimg.com/media/FIWa47BWQAUHFWm.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIWa47BWQAUHFWm.jpg',
     'url': 'https://t.co/2CbSjLwOcG',
     'display_url': 'pic.twitter.com/2CbSjLwOcG',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1478758360296177668/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1478758360296177668,
     'source_status_id_str': '1478758360296177668',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 32232,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1478758286904205315/vid/320x320/JHfFAmKOMrSMLhtL.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1478758286904205315/vid/540x540/j8vz4GWal1Db_rml.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1478758286904205315/vid/720x720/MptOYOddmwclRVgP.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1478758286904205315/pl/2PqdzIs24otBG3DC.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'President Joe Biden on COVID-19.',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2201,
  'favorite_count': 13972,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jan 07 00:55:00 +0000 2022',
  'id': 1479255214284812293,
  'id_str': '1479255214284812293',
  'full_text': 'Folks, we have a responsibility to see that America is an idea. One that requires vigilant stewardship.\n\nAs we stand here today, one year since January 6, 2021, we must be firm and resolute and unyielding in our defense of the right to vote and to have that vote counted.',
  'truncated': False,
  'display_text_range': [0, 271],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3209,
  'favorite_count': 21561,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 06 23:40:13 +0000 2022',
  'id': 1479236394161778689,
  'id_str': '1479236394161778689',
  'full_text': 'I did not seek this fight brought to this Capitol one year ago today, but I will not shrink from it either. \n\nI will stand in this breach and defend this nation. I will not allow anyone to place a dagger at the throat of democracy. The will of the people will be heard. https://t.co/spR4EkrVb7',
  'truncated': False,
  'display_text_range': [0, 269],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1479236339405107200,
     'id_str': '1479236339405107200',
     'indices': [270, 293],
     'media_url': 'http://pbs.twimg.com/media/FIdNqLEXMAQBPy_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIdNqLEXMAQBPy_.jpg',
     'url': 'https://t.co/spR4EkrVb7',
     'display_url': 'pic.twitter.com/spR4EkrVb7',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479236394161778689/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1479236339405107200,
     'id_str': '1479236339405107200',
     'indices': [270, 293],
     'media_url': 'http://pbs.twimg.com/media/FIdNqLEXMAQBPy_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIdNqLEXMAQBPy_.jpg',
     'url': 'https://t.co/spR4EkrVb7',
     'display_url': 'pic.twitter.com/spR4EkrVb7',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479236394161778689/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 39439,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479236339405107200/vid/720x720/brDTSxmdzUZ3RUGv.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479236339405107200/vid/320x320/iSiz-cBB_qjenfHR.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1479236339405107200/pl/_6vyaTuJfNF_udZG.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479236339405107200/vid/540x540/v5W9WFDnc6lufQ0J.mp4?tag=14'}]},
     'additional_media_info': {'title': 'I will not allow anyone to place a dagger at the throat of democracy.',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2384,
  'favorite_count': 14314,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 06 23:00:07 +0000 2022',
  'id': 1479226302423044103,
  'id_str': '1479226302423044103',
  'full_text': "You cannot love your country only when you win. You cannot obey the law only when it's convenient. You cannot be patriotic when you embrace and enable lies.",
  'truncated': False,
  'display_text_range': [0, 156],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 23493,
  'favorite_count': 152900,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 06 22:15:17 +0000 2022',
  'id': 1479215017274847237,
  'id_str': '1479215017274847237',
  'full_text': 'Here is the truth about what we saw on January 6, 2021: Rioters menaced the halls of the Capitol. They were not looking to save the cause of America, but to subvert the Constitution. https://t.co/fvzTT3Czos',
  'truncated': False,
  'display_text_range': [0, 182],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1479214952741285891,
     'id_str': '1479214952741285891',
     'indices': [183, 206],
     'media_url': 'http://pbs.twimg.com/media/FIc6N1lXsAQakPs.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIc6N1lXsAQakPs.jpg',
     'url': 'https://t.co/fvzTT3Czos',
     'display_url': 'pic.twitter.com/fvzTT3Czos',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479215017274847237/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1479214952741285891,
     'id_str': '1479214952741285891',
     'indices': [183, 206],
     'media_url': 'http://pbs.twimg.com/media/FIc6N1lXsAQakPs.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FIc6N1lXsAQakPs.jpg',
     'url': 'https://t.co/fvzTT3Czos',
     'display_url': 'pic.twitter.com/fvzTT3Czos',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1479215017274847237/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 48014,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479214952741285891/vid/540x540/slepd171zsV4w2mS.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1479214952741285891/pl/IDpolYt7Y5jf3H3h.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479214952741285891/vid/320x320/EPhT31kj7ywXaH9o.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1479214952741285891/vid/720x720/6XL2KDkNVR4F0-ed.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden on January 6, 2021',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2658,
  'favorite_count': 13967,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 06 21:29:39 +0000 2022',
  'id': 1479203536256831508,
  'id_str': '1479203536256831508',
  'full_text': 'One year ago, democracy was attacked. \n\nFor the first time in our history, a president tried to prevent the peaceful transition of power as a violent mob reached the Capitol. \n\nBut they failed. We must work to ensure that it never happens again.',
  'truncated': False,
  'display_text_range': [0, 245],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6701,
  'favorite_count': 47584,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 06 14:54:44 +0000 2022',
  'id': 1479104150428209157,
  'id_str': '1479104150428209157',
  'full_text': 'RT @POTUS: Here is the truth: The former president of the United States has created and spread a web of lies about the 2020 election.\n\nHe’s…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jan 06 14:36:22 +0000 2022',
   'id': 1479099527978270720,
   'id_str': '1479099527978270720',
   'full_text': 'Here is the truth: The former president of the United States has created and spread a web of lies about the 2020 election.\n\nHe’s done so because he values power over principle. Because his bruised ego matters more to him than our democracy or Constitution.',
   'truncated': False,
   'display_text_range': [0, 256],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 36409,
   'favorite_count': 197098,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 36409,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 06 14:07:16 +0000 2022',
  'id': 1479092205990121479,
  'id_str': '1479092205990121479',
  'full_text': 'RT @POTUS: Tune in as I deliver remarks to mark one year since the January 6th deadly assault on the Capitol. https://t.co/nvklC2pgl8',
  'truncated': False,
  'display_text_range': [0, 133],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/nvklC2pgl8',
     'expanded_url': 'https://twitter.com/i/broadcasts/1zqJVBDajvMJB',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [110, 133]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jan 06 14:06:20 +0000 2022',
   'id': 1479091969204932610,
   'id_str': '1479091969204932610',
   'full_text': 'Tune in as I deliver remarks to mark one year since the January 6th deadly assault on the Capitol. https://t.co/nvklC2pgl8',
   'truncated': False,
   'display_text_range': [0, 122],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/nvklC2pgl8',
      'expanded_url': 'https://twitter.com/i/broadcasts/1zqJVBDajvMJB',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [99, 122]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2435,
   'favorite_count': 11110,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2435,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jan 06 13:37:34 +0000 2022',
  'id': 1479084731627184128,
  'id_str': '1479084731627184128',
  'full_text': 'RT @POTUS: One year ago today, democracy was attacked. The will of the people was under assault. And our Constitution faced the gravest of…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jan 06 13:16:00 +0000 2022',
   'id': 1479079303199571972,
   'id_str': '1479079303199571972',
   'full_text': 'One year ago today, democracy was attacked. The will of the people was under assault. And our Constitution faced the gravest of threats.\n \nI’m heading to the Capitol this morning to speak about the day of insurrection, the state of American democracy, and where we go from here.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8740,
   'favorite_count': 62434,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8740,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jan 05 23:08:00 +0000 2022',
  'id': 1478865897750245393,
  'id_str': '1478865897750245393',
  'full_text': 'Let’s be clear: Booster shots work. They’re safe and provide the highest level of protection against the Omicron variant. \nhttps://t.co/sDOh06E5dD',
  'truncated': False,
  'display_text_range': [0, 146],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1478563404826693635,
     'id_str': '1478563404826693635',
     'indices': [123, 146],
     'media_url': 'http://pbs.twimg.com/media/FITpoOtXEAAPT9l.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FITpoOtXEAAPT9l.jpg',
     'url': 'https://t.co/sDOh06E5dD',
     'display_url': 'pic.twitter.com/sDOh06E5dD',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1478563460246032390/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1478563460246032390,
     'source_status_id_str': '1478563460246032390',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1478563404826693635,
     'id_str': '1478563404826693635',
     'indices': [123, 146],
     'media_url': 'http://pbs.twimg.com/media/FITpoOtXEAAPT9l.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FITpoOtXEAAPT9l.jpg',
     'url': 'https://t.co/sDOh06E5dD',
     'display_url': 'pic.twitter.com/sDOh06E5dD',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1478563460246032390/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1478563460246032390,
     'source_status_id_str': '1478563460246032390',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 22183,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1478563404826693635/vid/720x720/xVXiXwNn_hckWRCT.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1478563404826693635/vid/320x320/yZuyriU_Fewp-iX2.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1478563404826693635/pl/ntjdun9niqIaYomu.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1478563404826693635/vid/540x540/kGt2EALG9JF5yrp1.mp4?tag=14'}]},
     'additional_media_info': {'title': "Booster shots are free, they're safe, and available.",
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1612,
  'favorite_count': 10643,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jan 05 21:28:00 +0000 2022',
  'id': 1478840731968184325,
  'id_str': '1478840731968184325',
  'full_text': 'The COVID-19 vaccine and booster are our best defense to end this pandemic—and the best way to protect yourself and your loved ones. Get vaccinated.',
  'truncated': False,
  'display_text_range': [0, 148],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3319,
  'favorite_count': 25130,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jan 05 21:09:00 +0000 2022',
  'id': 1478835951518552066,
  'id_str': '1478835951518552066',
  'full_text': 'Millions rely on public transit every day—to get to work, to school, to visit with family. But many communities, especially communities of color, lack sufficient transit options. \n\nMy Bipartisan Infrastructure Law will expand public transit and replace outdated vehicles.',
  'truncated': False,
  'display_text_range': [0, 271],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1174,
  'favorite_count': 8320,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jan 05 18:41:00 +0000 2022',
  'id': 1478798705352396802,
  'id_str': '1478798705352396802',
  'full_text': 'If you’re fully vaccinated and boosted, you are highly protected from the Omicron variant.\n\nAnd we have enough vaccines to get every American fully vaccinated, including their booster shot. Get vaccinated, folks.',
  'truncated': False,
  'display_text_range': [0, 212],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4428,
  'favorite_count': 37695,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jan 04 22:48:00 +0000 2022',
  'id': 1478498476845682694,
  'id_str': '1478498476845682694',
  'full_text': 'Folks, get vaccinated.',
  'truncated': False,
  'display_text_range': [0, 22],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 18346,
  'favorite_count': 159029,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jan 04 19:58:44 +0000 2022',
  'id': 1478455879875899395,
  'id_str': '1478455879875899395',
  'full_text': 'RT @POTUS: Today, we are doubling our Pfizer antiviral pill order from 10 million to 20 million treatment courses.\n \nThese pills have been…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jan 04 19:53:55 +0000 2022',
   'id': 1478454665637416966,
   'id_str': '1478454665637416966',
   'full_text': 'Today, we are doubling our Pfizer antiviral pill order from 10 million to 20 million treatment courses.\n \nThese pills have been shown to dramatically decrease hospitalization and death from COVID-19. They are a game-changer.',
   'truncated': False,
   'display_text_range': [0, 224],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3737,
   'favorite_count': 27724,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3737,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 03 21:22:01 +0000 2022',
  'id': 1478114449450049545,
  'id_str': '1478114449450049545',
  'full_text': "This year, we'll keep: \n\nInvesting in America.\nRebuilding America.\nAnd building a better America for all. https://t.co/TCdzmyDtrp",
  'truncated': False,
  'display_text_range': [0, 105],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1478114446740537348,
     'id_str': '1478114446740537348',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/FINRQgdXwAQijhV.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FINRQgdXwAQijhV.jpg',
     'url': 'https://t.co/TCdzmyDtrp',
     'display_url': 'pic.twitter.com/TCdzmyDtrp',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1478114449450049545/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1478114446740537348,
     'id_str': '1478114446740537348',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/FINRQgdXwAQijhV.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FINRQgdXwAQijhV.jpg',
     'url': 'https://t.co/TCdzmyDtrp',
     'display_url': 'pic.twitter.com/TCdzmyDtrp',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1478114449450049545/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2623,
  'favorite_count': 23746,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Jan 03 16:26:36 +0000 2022',
  'id': 1478040106980331522,
  'id_str': '1478040106980331522',
  'full_text': 'RT @POTUS: Right now, 400,000 schools and child care centers are at risk of exposure to lead in their water. It’s unacceptable.\n \nWe’re rep…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Jan 03 14:30:00 +0000 2022',
   'id': 1478010763147100170,
   'id_str': '1478010763147100170',
   'full_text': 'Right now, 400,000 schools and child care centers are at risk of exposure to lead in their water. It’s unacceptable.\n \nWe’re replacing 100% of the nation’s lead pipes so that every child in America can turn on the faucet and drink clean water.',
   'truncated': False,
   'display_text_range': [0, 243],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4475,
   'favorite_count': 32685,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4475,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 01 18:06:01 +0000 2022',
  'id': 1477340350947725322,
  'id_str': '1477340350947725322',
  'full_text': 'In 2022, we’re going to keep building a better America. Happy New Year! https://t.co/RWAayKDwJH',
  'truncated': False,
  'display_text_range': [0, 71],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1477340348313739267,
     'id_str': '1477340348313739267',
     'indices': [72, 95],
     'media_url': 'http://pbs.twimg.com/media/FICRODGXoAMmwXE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FICRODGXoAMmwXE.jpg',
     'url': 'https://t.co/RWAayKDwJH',
     'display_url': 'pic.twitter.com/RWAayKDwJH',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1477340350947725322/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1477340348313739267,
     'id_str': '1477340348313739267',
     'indices': [72, 95],
     'media_url': 'http://pbs.twimg.com/media/FICRODGXoAMmwXE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FICRODGXoAMmwXE.jpg',
     'url': 'https://t.co/RWAayKDwJH',
     'display_url': 'pic.twitter.com/RWAayKDwJH',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1477340350947725322/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9294,
  'favorite_count': 141824,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jan 01 05:40:01 +0000 2022',
  'id': 1477152612231389186,
  'id_str': '1477152612231389186',
  'full_text': 'RT @POTUS: Happy New Year, folks! https://t.co/UrgNq8iZuE',
  'truncated': False,
  'display_text_range': [0, 57],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1477142544366641160,
     'id_str': '1477142544366641160',
     'indices': [34, 57],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1477142544366641160/img/Y1UhtS0lGl8tSabL.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1477142544366641160/img/Y1UhtS0lGl8tSabL.jpg',
     'url': 'https://t.co/UrgNq8iZuE',
     'display_url': 'pic.twitter.com/UrgNq8iZuE',
     'expanded_url': 'https://twitter.com/POTUS/status/1477142568693637121/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1477142568693637121,
     'source_status_id_str': '1477142568693637121',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1477142544366641160,
     'id_str': '1477142544366641160',
     'indices': [34, 57],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1477142544366641160/img/Y1UhtS0lGl8tSabL.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1477142544366641160/img/Y1UhtS0lGl8tSabL.jpg',
     'url': 'https://t.co/UrgNq8iZuE',
     'display_url': 'pic.twitter.com/UrgNq8iZuE',
     'expanded_url': 'https://twitter.com/POTUS/status/1477142568693637121/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1477142568693637121,
     'source_status_id_str': '1477142568693637121',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 10000,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1477142544366641160/vid/720x720/K8H01gNGOTsA3Hqt.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1477142544366641160/vid/320x320/pSOHq0tHhH4-rRVq.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1477142544366641160/vid/540x540/496yXpE-YD_-1ICu.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1477142544366641160/pl/m_aGLhC-wEvtTBkR.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004742,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jan 01 05:00:07 +0000 2022',
   'id': 1477142568693637121,
   'id_str': '1477142568693637121',
   'full_text': 'Happy New Year, folks! https://t.co/UrgNq8iZuE',
   'truncated': False,
   'display_text_range': [0, 22],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1477142544366641160,
      'id_str': '1477142544366641160',
      'indices': [23, 46],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1477142544366641160/img/Y1UhtS0lGl8tSabL.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1477142544366641160/img/Y1UhtS0lGl8tSabL.jpg',
      'url': 'https://t.co/UrgNq8iZuE',
      'display_url': 'pic.twitter.com/UrgNq8iZuE',
      'expanded_url': 'https://twitter.com/POTUS/status/1477142568693637121/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1477142544366641160,
      'id_str': '1477142544366641160',
      'indices': [23, 46],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1477142544366641160/img/Y1UhtS0lGl8tSabL.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1477142544366641160/img/Y1UhtS0lGl8tSabL.jpg',
      'url': 'https://t.co/UrgNq8iZuE',
      'display_url': 'pic.twitter.com/UrgNq8iZuE',
      'expanded_url': 'https://twitter.com/POTUS/status/1477142568693637121/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 10000,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1477142544366641160/vid/720x720/K8H01gNGOTsA3Hqt.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1477142544366641160/vid/320x320/pSOHq0tHhH4-rRVq.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1477142544366641160/vid/540x540/496yXpE-YD_-1ICu.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1477142544366641160/pl/m_aGLhC-wEvtTBkR.m3u8?tag=14&container=fmp4'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7596,
   'favorite_count': 82503,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7596,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 31 22:07:25 +0000 2021',
  'id': 1477038711351259145,
  'id_str': '1477038711351259145',
  'full_text': 'RT @POTUS: Betty White brought a smile to the lips of generations of Americans. She’s a cultural icon who will be sorely missed. Jill and I…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Dec 31 21:04:46 +0000 2021',
   'id': 1477022943586754560,
   'id_str': '1477022943586754560',
   'full_text': 'Betty White brought a smile to the lips of generations of Americans. She’s a cultural icon who will be sorely missed. Jill and I are thinking of her family and all those who loved her this New Year’s Eve.',
   'truncated': False,
   'display_text_range': [0, 204],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 20674,
   'favorite_count': 224834,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 20674,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 30 18:16:01 +0000 2021',
  'id': 1476618089273905158,
  'id_str': '1476618089273905158',
  'full_text': "This new sinister combination of voter suppression and election subversion—it's un-American and it's undemocratic.\n\nWe must pass the Freedom to Vote Act and the John Lewis Voting Rights Advancement Act.",
  'truncated': False,
  'display_text_range': [0, 202],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9510,
  'favorite_count': 47098,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 30 16:52:59 +0000 2021',
  'id': 1476597193230503938,
  'id_str': '1476597193230503938',
  'full_text': 'RT @POTUS: When I came into office, our economy was in crisis. \n \nBut over the last 11 months, we’ve added nearly 6 million jobs.\n \nThat’s…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Dec 30 16:51:17 +0000 2021',
   'id': 1476596766409736195,
   'id_str': '1476596766409736195',
   'full_text': 'When I came into office, our economy was in crisis. \n \nBut over the last 11 months, we’ve added nearly 6 million jobs.\n \nThat’s the largest increase in recorded history.',
   'truncated': False,
   'display_text_range': [0, 169],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9837,
   'favorite_count': 70913,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9837,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 30 03:04:38 +0000 2021',
  'id': 1476388733385678851,
  'id_str': '1476388733385678851',
  'full_text': 'RT @POTUS: Today, I committed $137 million to expanding the production of COVID-19 at-home tests using our military authority in order to m…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Dec 30 03:00:29 +0000 2021',
   'id': 1476387686848073738,
   'id_str': '1476387686848073738',
   'full_text': 'Today, I committed $137 million to expanding the production of COVID-19 at-home tests using our military authority in order to meet demand. https://t.co/eNmA4CCkkR',
   'truncated': False,
   'display_text_range': [0, 163],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/eNmA4CCkkR',
      'expanded_url': 'https://www.defense.gov/News/Releases/Release/Article/2885655/dod-awards-1367-million-contract-to-milliporesigma-to-establish-domestic-produc/',
      'display_url': 'defense.gov/News/Releases/…',
      'indices': [140, 163]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2566,
   'favorite_count': 15100,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2566,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 29 03:36:20 +0000 2021',
  'id': 1476034320833859584,
  'id_str': '1476034320833859584',
  'full_text': 'RT @POTUS: A son of Searchlight, Nevada, Harry never forgot his humble roots. A boxer, he never gave up a fight. A great American, he looke…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Dec 29 03:35:45 +0000 2021',
   'id': 1476034176524693504,
   'id_str': '1476034176524693504',
   'full_text': 'A son of Searchlight, Nevada, Harry never forgot his humble roots. A boxer, he never gave up a fight. A great American, he looked at challenges and believed it was within our capacity to do good — to do right.\n\nMay God bless Harry Reid, a dear friend and a giant of our history.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5923,
   'favorite_count': 50371,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5923,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 28 23:27:00 +0000 2021',
  'id': 1475971575249874947,
  'id_str': '1475971575249874947',
  'full_text': 'As we continue our holiday celebrations and head into the new year, remember that the best way to protect your health and keep your loved ones safe from COVID-19 and the Omicron variant is to get vaccinated and get your booster shot.',
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2688,
  'favorite_count': 20364,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 28 23:09:00 +0000 2021',
  'id': 1475967046450139144,
  'id_str': '1475967046450139144',
  'full_text': 'RT @POTUS: My Administration has the back of every governor fighting COVID-19 in their state. Last week, I rolled out a federal plan to tac…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Dec 28 17:25:39 +0000 2021',
   'id': 1475880640918835208,
   'id_str': '1475880640918835208',
   'full_text': 'My Administration has the back of every governor fighting COVID-19 in their state. Last week, I rolled out a federal plan to tackle Omicron by adding vaccination and booster capacity, hospital equipment, staff, and more.\n \nWe’re going to get through this by working together.',
   'truncated': False,
   'display_text_range': [0, 275],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004742,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3579,
   'favorite_count': 24619,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3579,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 28 20:14:01 +0000 2021',
  'id': 1475923008925614082,
  'id_str': '1475923008925614082',
  'full_text': 'The most valuable tool we have to lower the costs of prescription drugs, child care, and health care for families is my Build Back Better Act. \n\nIt’s fully paid for, will not increase the deficit, and won’t raise the taxes by one penny for anyone making less than $400,000 a year.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2813,
  'favorite_count': 16685,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 27 20:34:00 +0000 2021',
  'id': 1475565652010319877,
  'id_str': '1475565652010319877',
  'full_text': "When it comes to voter suppression, it’s no longer just about making it easy for eligible people to vote—it's about whether or not those votes will count at all.\n\nIt's simple: voter suppression is un-American, un-democratic, and unpatriotic.",
  'truncated': False,
  'display_text_range': [0, 241],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6939,
  'favorite_count': 38789,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Dec 26 20:33:06 +0000 2021',
  'id': 1475203037132210185,
  'id_str': '1475203037132210185',
  'full_text': 'RT @POTUS: Today, we are heartbroken to learn of the passing of a true servant of God and of the people, Archbishop Desmond Tutu of South A…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Dec 26 20:31:09 +0000 2021',
   'id': 1475202544997707788,
   'id_str': '1475202544997707788',
   'full_text': 'Today, we are heartbroken to learn of the passing of a true servant of God and of the people, Archbishop Desmond Tutu of South Africa. We send our deepest condolences to the people of South Africa who are mourning this great loss.',
   'truncated': False,
   'display_text_range': [0, 230],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8718,
   'favorite_count': 86306,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8718,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Dec 26 16:40:00 +0000 2021',
  'id': 1475144376175235073,
  'id_str': '1475144376175235073',
  'full_text': 'Sending warm wishes to all who are celebrating Kwanzaa this week. We hope these days of reflection on the seven principles bring light, happiness, and peace in the coming year.',
  'truncated': False,
  'display_text_range': [0, 176],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2576,
  'favorite_count': 26553,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 25 15:26:03 +0000 2021',
  'id': 1474763376563789834,
  'id_str': '1474763376563789834',
  'full_text': 'On behalf of the entire Biden family, Jill and I want to wish you a very Merry Christmas. https://t.co/2dIRa6XIEV',
  'truncated': False,
  'display_text_range': [0, 89],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1474763367835475974,
     'id_str': '1474763367835475974',
     'indices': [90, 113],
     'media_url': 'http://pbs.twimg.com/media/FHdpeCuXoAY_WTn.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FHdpeCuXoAY_WTn.jpg',
     'url': 'https://t.co/2dIRa6XIEV',
     'display_url': 'pic.twitter.com/2dIRa6XIEV',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1474763376563789834/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 2048, 'h': 1152, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1474763367835475974,
     'id_str': '1474763367835475974',
     'indices': [90, 113],
     'media_url': 'http://pbs.twimg.com/media/FHdpeCuXoAY_WTn.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FHdpeCuXoAY_WTn.jpg',
     'url': 'https://t.co/2dIRa6XIEV',
     'display_url': 'pic.twitter.com/2dIRa6XIEV',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1474763376563789834/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 2048, 'h': 1152, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4258,
  'favorite_count': 56377,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 25 15:19:16 +0000 2021',
  'id': 1474761668152471554,
  'id_str': '1474761668152471554',
  'full_text': 'RT @POTUS: From our family to yours, Merry Christmas! May your time with loved ones be filled with warmth, comfort, and joy this holiday se…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Dec 25 13:54:34 +0000 2021',
   'id': 1474740353601355776,
   'id_str': '1474740353601355776',
   'full_text': 'From our family to yours, Merry Christmas! May your time with loved ones be filled with warmth, comfort, and joy this holiday season. https://t.co/gCPM81l5Pu',
   'truncated': False,
   'display_text_range': [0, 133],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1474740348475875330,
      'id_str': '1474740348475875330',
      'indices': [134, 157],
      'media_url': 'http://pbs.twimg.com/media/FHdUiI7XIAIGjsB.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FHdUiI7XIAIGjsB.jpg',
      'url': 'https://t.co/gCPM81l5Pu',
      'display_url': 'pic.twitter.com/gCPM81l5Pu',
      'expanded_url': 'https://twitter.com/POTUS/status/1474740353601355776/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1474740348475875330,
      'id_str': '1474740348475875330',
      'indices': [134, 157],
      'media_url': 'http://pbs.twimg.com/media/FHdUiI7XIAIGjsB.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FHdUiI7XIAIGjsB.jpg',
      'url': 'https://t.co/gCPM81l5Pu',
      'display_url': 'pic.twitter.com/gCPM81l5Pu',
      'expanded_url': 'https://twitter.com/POTUS/status/1474740353601355776/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 15691,
   'favorite_count': 217093,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 15691,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 25 00:38:36 +0000 2021',
  'id': 1474540043423391744,
  'id_str': '1474540043423391744',
  'full_text': 'RT @POTUS: This morning, the First Lady and I stopped by the Children’s National Hospital to spread a little holiday cheer. We hope everyon…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Dec 24 19:08:32 +0000 2021',
   'id': 1474456976994324482,
   'id_str': '1474456976994324482',
   'full_text': 'This morning, the First Lady and I stopped by the Children’s National Hospital to spread a little holiday cheer. We hope everyone has a happy, healthy, and safe holiday season. https://t.co/5eBIDRgptp',
   'truncated': False,
   'display_text_range': [0, 176],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1474456973152247815,
      'id_str': '1474456973152247815',
      'indices': [177, 200],
      'media_url': 'http://pbs.twimg.com/media/FHZSzhlWYAc9i34.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FHZSzhlWYAc9i34.jpg',
      'url': 'https://t.co/5eBIDRgptp',
      'display_url': 'pic.twitter.com/5eBIDRgptp',
      'expanded_url': 'https://twitter.com/POTUS/status/1474456976994324482/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1620, 'h': 1080, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1474456973152247815,
      'id_str': '1474456973152247815',
      'indices': [177, 200],
      'media_url': 'http://pbs.twimg.com/media/FHZSzhlWYAc9i34.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FHZSzhlWYAc9i34.jpg',
      'url': 'https://t.co/5eBIDRgptp',
      'display_url': 'pic.twitter.com/5eBIDRgptp',
      'expanded_url': 'https://twitter.com/POTUS/status/1474456976994324482/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1620, 'h': 1080, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6314,
   'favorite_count': 58737,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6314,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 24 01:22:00 +0000 2021',
  'id': 1474188578758533123,
  'id_str': '1474188578758533123',
  'full_text': 'Gas prices are down ten cents nationally, and some states across the country are seeing gas prices at pre-pandemic averages. This will help so many Americans who are traveling this week.',
  'truncated': False,
  'display_text_range': [0, 186],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6673,
  'favorite_count': 56810,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 23 23:36:00 +0000 2021',
  'id': 1474161901865259010,
  'id_str': '1474161901865259010',
  'full_text': 'Packages are moving, gifts are being delivered, and shelves are stocked. Today, retail inventories are up more than 3% from last year. \n\nWe’re making progress.',
  'truncated': False,
  'display_text_range': [0, 159],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4991,
  'favorite_count': 37143,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 23 22:17:46 +0000 2021',
  'id': 1474142214171287555,
  'id_str': '1474142214171287555',
  'full_text': 'RT @POTUS: I had the honor of hosting the 2021 Kennedy Center Honorees this month at the White House. These folks are giants of the arts, a…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Dec 23 22:05:30 +0000 2021',
   'id': 1474139127411060736,
   'id_str': '1474139127411060736',
   'full_text': 'I had the honor of hosting the 2021 Kennedy Center Honorees this month at the White House. These folks are giants of the arts, and I’m grateful they’ve shared their gifts with the nation and with the world. https://t.co/65k9z5wIFt',
   'truncated': False,
   'display_text_range': [0, 206],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1474139016190640140,
      'id_str': '1474139016190640140',
      'indices': [207, 230],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1474139016190640140/img/FTvhB93gemWRPZEE.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1474139016190640140/img/FTvhB93gemWRPZEE.jpg',
      'url': 'https://t.co/65k9z5wIFt',
      'display_url': 'pic.twitter.com/65k9z5wIFt',
      'expanded_url': 'https://twitter.com/POTUS/status/1474139127411060736/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1474139016190640140,
      'id_str': '1474139016190640140',
      'indices': [207, 230],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1474139016190640140/img/FTvhB93gemWRPZEE.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1474139016190640140/img/FTvhB93gemWRPZEE.jpg',
      'url': 'https://t.co/65k9z5wIFt',
      'display_url': 'pic.twitter.com/65k9z5wIFt',
      'expanded_url': 'https://twitter.com/POTUS/status/1474139127411060736/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 116282,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1474139016190640140/pl/bbiiKebTQHeZvRhe.m3u8?tag=14&container=fmp4'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1474139016190640140/vid/720x720/E7WhB3KJQwVCXewP.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1474139016190640140/vid/320x320/lohDLPNMFCVpFADZ.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1474139016190640140/vid/540x540/mWPRZsSqY7SDHUfK.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2081,
   'favorite_count': 13578,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2081,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 23 19:11:49 +0000 2021',
  'id': 1474095416077660172,
  'id_str': '1474095416077660172',
  'full_text': 'RT @POTUS: We should all be concerned about Omicron, but not panicked.\n\nIf you’re fully vaccinated — and especially if you got boosted — yo…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Dec 23 14:14:18 +0000 2021',
   'id': 1474020545754763264,
   'id_str': '1474020545754763264',
   'full_text': 'We should all be concerned about Omicron, but not panicked.\n\nIf you’re fully vaccinated — and especially if you got boosted — you’re highly protected.\n\nBut if you’re unvaccinated, you’re at higher risk of getting severely ill from COVID-19, getting hospitalized, and dying.',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5088,
   'favorite_count': 33240,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5088,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 23 18:20:01 +0000 2021',
  'id': 1474082380851855368,
  'id_str': '1474082380851855368',
  'full_text': 'My Bipartisan Infrastructure Law includes the largest investment of public transit ever and will replace diesel buses with electric ones. This will get more people where they are going safer, faster, and cleaner for the environment. It’s a win, win, win.',
  'truncated': False,
  'display_text_range': [0, 254],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2073,
  'favorite_count': 12455,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 23 00:46:00 +0000 2021',
  'id': 1473817128910401541,
  'id_str': '1473817128910401541',
  'full_text': 'Two years earlier than experts predicted, the economy has added nearly 6 million jobs and the unemployment rate is down to 4.2%. Let’s keep this historic progress moving by passing Build Back Better.',
  'truncated': False,
  'display_text_range': [0, 199],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3707,
  'favorite_count': 22125,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 22 23:01:00 +0000 2021',
  'id': 1473790705743056899,
  'id_str': '1473790705743056899',
  'full_text': "If you're over the age of 18 and six months have gone by since you got vaccinated, go get your booster. Go get it now.",
  'truncated': False,
  'display_text_range': [0, 118],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7503,
  'favorite_count': 64775,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 22 19:38:27 +0000 2021',
  'id': 1473739730311389191,
  'id_str': '1473739730311389191',
  'full_text': 'RT @POTUS: Today, I announced my Administration is extending the pause on federal student loan repayments for an additional 90 days. https:…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Dec 22 18:27:30 +0000 2021',
   'id': 1473721877654867969,
   'id_str': '1473721877654867969',
   'full_text': 'Today, I announced my Administration is extending the pause on federal student loan repayments for an additional 90 days. https://t.co/mxveCTe7bH',
   'truncated': False,
   'display_text_range': [0, 121],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1473721812836139014,
      'id_str': '1473721812836139014',
      'indices': [122, 145],
      'media_url': 'http://pbs.twimg.com/media/FHO2O9dXIAQQ6HY.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FHO2O9dXIAQQ6HY.jpg',
      'url': 'https://t.co/mxveCTe7bH',
      'display_url': 'pic.twitter.com/mxveCTe7bH',
      'expanded_url': 'https://twitter.com/POTUS/status/1473721877654867969/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1473721812836139014,
      'id_str': '1473721812836139014',
      'indices': [122, 145],
      'media_url': 'http://pbs.twimg.com/media/FHO2O9dXIAQQ6HY.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FHO2O9dXIAQQ6HY.jpg',
      'url': 'https://t.co/mxveCTe7bH',
      'display_url': 'pic.twitter.com/mxveCTe7bH',
      'expanded_url': 'https://twitter.com/POTUS/status/1473721877654867969/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 41082,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1473721812836139014/vid/320x320/Fb7Pjayo3PVLSp8F.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1473721812836139014/vid/540x540/WLpYvgutIjDWe_ZA.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1473721812836139014/vid/720x720/evC3rvLqE3hSaJY7.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1473721812836139014/pl/M2zK92SfsIZn7niX.m3u8?tag=14&container=fmp4'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4425,
   'favorite_count': 32723,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4425,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 22 19:07:01 +0000 2021',
  'id': 1473731819673694211,
  'id_str': '1473731819673694211',
  'full_text': 'We are not going back to March 2020. \n\nMore than 200 million Americans have been fully vaccinated and today, we’re prepared for what’s coming. We must stay focused.',
  'truncated': False,
  'display_text_range': [0, 164],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2458,
  'favorite_count': 19526,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 22 14:50:12 +0000 2021',
  'id': 1473667190310199302,
  'id_str': '1473667190310199302',
  'full_text': 'If you haven’t yet, please get vaccinated. It’s the best way to keep yourself and your loved ones safe from the Omicron variant. Now is the time. https://t.co/nLva52NSGI',
  'truncated': False,
  'display_text_range': [0, 145],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1473667143472488459,
     'id_str': '1473667143472488459',
     'indices': [146, 169],
     'media_url': 'http://pbs.twimg.com/media/FHOEf3HXwAUSAVy.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FHOEf3HXwAUSAVy.jpg',
     'url': 'https://t.co/nLva52NSGI',
     'display_url': 'pic.twitter.com/nLva52NSGI',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1473667190310199302/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1473667143472488459,
     'id_str': '1473667143472488459',
     'indices': [146, 169],
     'media_url': 'http://pbs.twimg.com/media/FHOEf3HXwAUSAVy.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FHOEf3HXwAUSAVy.jpg',
     'url': 'https://t.co/nLva52NSGI',
     'display_url': 'pic.twitter.com/nLva52NSGI',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1473667190310199302/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 30930,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1473667143472488459/pl/Qmb94SQI6ZnkYcSh.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1473667143472488459/vid/720x720/4kd343VYgpK53XtS.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1473667143472488459/vid/540x540/u4LyPNZCQAKMiq6I.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1473667143472488459/vid/320x320/yFfeH_gxF2tluIlw.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Now is the time. ',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1494,
  'favorite_count': 9222,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 22 01:56:00 +0000 2021',
  'id': 1473472357440315394,
  'id_str': '1473472357440315394',
  'full_text': 'Booster shots provide the strongest protection against the Omicron variant. That’s why I got my booster—and encourage everyone who’s eligible to do so as well. https://t.co/7sEoXNjr9D',
  'truncated': False,
  'display_text_range': [0, 183],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1473442122502217729,
     'id_str': '1473442122502217729',
     'indices': [160, 183],
     'media_url': 'http://pbs.twimg.com/media/FHK31MKXwAEoSuo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FHK31MKXwAEoSuo.jpg',
     'url': 'https://t.co/7sEoXNjr9D',
     'display_url': 'pic.twitter.com/7sEoXNjr9D',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1473442157537251332/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1473442157537251332,
     'source_status_id_str': '1473442157537251332',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1473442122502217729,
     'id_str': '1473442122502217729',
     'indices': [160, 183],
     'media_url': 'http://pbs.twimg.com/media/FHK31MKXwAEoSuo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FHK31MKXwAEoSuo.jpg',
     'url': 'https://t.co/7sEoXNjr9D',
     'display_url': 'pic.twitter.com/7sEoXNjr9D',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1473442157537251332/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1473442157537251332,
     'source_status_id_str': '1473442157537251332',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 17550,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1473442122502217729/vid/320x320/P98RJm6l72cibpSU.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1473442122502217729/vid/540x540/_nMPuc92jotw7gjC.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1473442122502217729/vid/720x720/0oTEIEQAgM3rdiL7.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1473442122502217729/pl/LY-HlslXQPfNDQG4.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Get your booster shot',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1219,
  'favorite_count': 8460,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 22 00:47:00 +0000 2021',
  'id': 1473454994099687433,
  'id_str': '1473454994099687433',
  'full_text': 'To the Americans who are wondering whether you can safely celebrate the holidays this weekend: the answer is yes, you can. \n\nIf you and your families are vaccinated and follow the precautions, you should feel comfortable celebrating the Christmas holiday as you have planned.',
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2554,
  'favorite_count': 21852,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 22 00:33:46 +0000 2021',
  'id': 1473451662064902144,
  'id_str': '1473451662064902144',
  'full_text': 'RT @POTUS: We’re purchasing 500 million at-home rapid COVID tests that will be distributed for free to Americans who want them. https://t.c…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Dec 22 00:15:22 +0000 2021',
   'id': 1473447030546747394,
   'id_str': '1473447030546747394',
   'full_text': 'We’re purchasing 500 million at-home rapid COVID tests that will be distributed for free to Americans who want them. https://t.co/m9rgb9kjmP',
   'truncated': False,
   'display_text_range': [0, 116],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1473446972891832321,
      'id_str': '1473446972891832321',
      'indices': [117, 140],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1473446972891832321/img/8mCb4wtwkEZR2blH.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1473446972891832321/img/8mCb4wtwkEZR2blH.jpg',
      'url': 'https://t.co/m9rgb9kjmP',
      'display_url': 'pic.twitter.com/m9rgb9kjmP',
      'expanded_url': 'https://twitter.com/POTUS/status/1473447030546747394/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1473446972891832321,
      'id_str': '1473446972891832321',
      'indices': [117, 140],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1473446972891832321/img/8mCb4wtwkEZR2blH.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1473446972891832321/img/8mCb4wtwkEZR2blH.jpg',
      'url': 'https://t.co/m9rgb9kjmP',
      'display_url': 'pic.twitter.com/m9rgb9kjmP',
      'expanded_url': 'https://twitter.com/POTUS/status/1473447030546747394/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 33950,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1473446972891832321/vid/320x320/3u5rDJINNNF0llkN.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1473446972891832321/vid/540x540/X7ZRL9UIuq4p56-B.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1473446972891832321/pl/bG2TyHRBPKpVDkyu.m3u8?tag=14&container=fmp4'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1473446972891832321/vid/720x720/H0PPN1ulXtuFeOwc.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2807,
   'favorite_count': 17868,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2807,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 21 02:42:00 +0000 2021',
  'id': 1473121546638184451,
  'id_str': '1473121546638184451',
  'full_text': 'RT @POTUS: Folks, Omicron cases are on the rise in the United States. I want to give you all a sense of where we are and what we know.',
  'truncated': False,
  'display_text_range': [0, 134],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Dec 21 01:46:01 +0000 2021',
   'id': 1473107458801426433,
   'id_str': '1473107458801426433',
   'full_text': 'Folks, Omicron cases are on the rise in the United States. I want to give you all a sense of where we are and what we know.',
   'truncated': False,
   'display_text_range': [0, 123],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7537,
   'favorite_count': 46439,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7537,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 20 17:35:00 +0000 2021',
  'id': 1472983891002765313,
  'id_str': '1472983891002765313',
  'full_text': 'RT @POTUS: Right now, there’s a kid out there whose family can’t afford her insulin because it costs $1,000 per month. The Build Back Bette…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Dec 20 17:32:18 +0000 2021',
   'id': 1472983210665590785,
   'id_str': '1472983210665590785',
   'full_text': 'Right now, there’s a kid out there whose family can’t afford her insulin because it costs $1,000 per month. The Build Back Better Act would cap their monthly insulin costs at $35. I’m committed as ever to getting it done for them.',
   'truncated': False,
   'display_text_range': [0, 230],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 17181,
   'favorite_count': 100586,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 17181,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 17 22:14:00 +0000 2021',
  'id': 1471966938821767171,
  'id_str': '1471966938821767171',
  'full_text': "There aren't a lot of things that almost every American can agree on. But I think it's safe to say that all of us can agree that prescription drugs are outrageously expensive in our country. \n\nUnder my Build Back Better bill, which has passed the House, they won’t be.",
  'truncated': False,
  'display_text_range': [0, 268],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3116,
  'favorite_count': 22025,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 17 17:59:23 +0000 2021',
  'id': 1471902859784556547,
  'id_str': '1471902859784556547',
  'full_text': 'RT @POTUS: In my first year in office, we’ve passed two of the most important pieces of economic legislation in decades.\n \nThe third is in…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Dec 17 17:59:02 +0000 2021',
   'id': 1471902772803121153,
   'id_str': '1471902772803121153',
   'full_text': 'In my first year in office, we’ve passed two of the most important pieces of economic legislation in decades.\n \nThe third is in its final stages — and I’m confident we’ll get it passed.',
   'truncated': False,
   'display_text_range': [0, 185],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4276,
   'favorite_count': 30654,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4276,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 17 14:25:03 +0000 2021',
  'id': 1471848921374859269,
  'id_str': '1471848921374859269',
  'full_text': 'Six months out from your second Pfizer or Moderna vaccine shot or two months out from your Johnson &amp; Johnson shot? \n\nGet your booster.',
  'truncated': False,
  'display_text_range': [0, 138],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3343,
  'favorite_count': 27461,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 17 00:05:01 +0000 2021',
  'id': 1471632488166477831,
  'id_str': '1471632488166477831',
  'full_text': 'The shock of losing a home or business, the grief of losing a loved one during the holidays, is traumatizing. \n\nWe are going to ensure that folks in Kentucky and all those affected by the tornadoes have all the mental health resources they need to get through this difficult time.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1687,
  'favorite_count': 11751,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 16 21:45:02 +0000 2021',
  'id': 1471597260035272707,
  'id_str': '1471597260035272707',
  'full_text': 'The Build Back Better Act will lower the core costs that have held Americans back for decades: on everything from health care and child care to prescription drugs and housing. \n\nNo Republican in Congress supports it.',
  'truncated': False,
  'display_text_range': [0, 216],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2871,
  'favorite_count': 14344,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 16 20:40:02 +0000 2021',
  'id': 1471580901180063746,
  'id_str': '1471580901180063746',
  'full_text': 'To the people of Kentucky who have been devastatingly impacted by these tornadoes, know this—I intend to do whatever it takes, for as long as it takes, to help support your state and your local leaders recover and rebuild.\nhttps://t.co/YKcUPa74vt',
  'truncated': False,
  'display_text_range': [0, 246],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1471513962256678914,
     'id_str': '1471513962256678914',
     'indices': [223, 246],
     'media_url': 'http://pbs.twimg.com/media/FGveQH1VkA82HC7.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FGveQH1VkA82HC7.jpg',
     'url': 'https://t.co/YKcUPa74vt',
     'display_url': 'pic.twitter.com/YKcUPa74vt',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1471514076819771398/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1471514076819771398,
     'source_status_id_str': '1471514076819771398',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1471513962256678914,
     'id_str': '1471513962256678914',
     'indices': [223, 246],
     'media_url': 'http://pbs.twimg.com/media/FGveQH1VkA82HC7.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FGveQH1VkA82HC7.jpg',
     'url': 'https://t.co/YKcUPa74vt',
     'display_url': 'pic.twitter.com/YKcUPa74vt',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1471514076819771398/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1471514076819771398,
     'source_status_id_str': '1471514076819771398',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 20887,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1471513962256678914/pl/bQy2kvpqKWbySiVu.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1471513962256678914/vid/540x540/53wTexgaQmZFYJ4K.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1471513962256678914/vid/320x320/053pmbwLnwNiU1fC.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1471513962256678914/vid/720x720/yL3JRw5h0JpquzIk.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Joe Biden on Disaster Relief',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1147,
  'favorite_count': 7536,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 16 19:08:39 +0000 2021',
  'id': 1471557905992269832,
  'id_str': '1471557905992269832',
  'full_text': 'RT @POTUS: Join me as I award the Medal of Honor to three American soldiers and deliver remarks. https://t.co/2JzvzqSvOv',
  'truncated': False,
  'display_text_range': [0, 120],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/2JzvzqSvOv',
     'expanded_url': 'https://twitter.com/i/broadcasts/1ZkKzbgeedRKv',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [97, 120]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Dec 16 19:08:07 +0000 2021',
   'id': 1471557772126965762,
   'id_str': '1471557772126965762',
   'full_text': 'Join me as I award the Medal of Honor to three American soldiers and deliver remarks. https://t.co/2JzvzqSvOv',
   'truncated': False,
   'display_text_range': [0, 109],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/2JzvzqSvOv',
      'expanded_url': 'https://twitter.com/i/broadcasts/1ZkKzbgeedRKv',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [86, 109]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1161,
   'favorite_count': 6307,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1161,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 16 17:14:02 +0000 2021',
  'id': 1471529060295663626,
  'id_str': '1471529060295663626',
  'full_text': 'The American people deserve more than just a little breathing room—they deserve a real fighting chance to get ahead. The Build Back Better Act will prioritize families like yours and rebuild the backbone of America.\nhttps://t.co/YXwRRtrmJ2',
  'truncated': False,
  'display_text_range': [0, 239],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1465312100402835462,
     'id_str': '1465312100402835462',
     'indices': [216, 239],
     'media_url': 'http://pbs.twimg.com/media/FFXVqwzXIA4TI0I.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFXVqwzXIA4TI0I.jpg',
     'url': 'https://t.co/YXwRRtrmJ2',
     'display_url': 'pic.twitter.com/YXwRRtrmJ2',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1465312189447872513/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1465312189447872513,
     'source_status_id_str': '1465312189447872513',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1465312100402835462,
     'id_str': '1465312100402835462',
     'indices': [216, 239],
     'media_url': 'http://pbs.twimg.com/media/FFXVqwzXIA4TI0I.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFXVqwzXIA4TI0I.jpg',
     'url': 'https://t.co/YXwRRtrmJ2',
     'display_url': 'pic.twitter.com/YXwRRtrmJ2',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1465312189447872513/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1465312189447872513,
     'source_status_id_str': '1465312189447872513',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 59926,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465312100402835462/vid/320x320/5A6fIsvD_gM__Q3-.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1465312100402835462/pl/hntK-q5lwpBdIuIO.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465312100402835462/vid/720x720/apyYo4NV3Q04nb3c.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465312100402835462/vid/540x540/XOHX8mJtWqYBhgdf.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1059,
  'favorite_count': 5589,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 16 01:29:00 +0000 2021',
  'id': 1471291235377762305,
  'id_str': '1471291235377762305',
  'full_text': "If you are vaccinated but still worried about the new variant, get your booster. \nIf you aren't vaccinated, go get that first shot. \nWe’ll fight the Omicron variant, together.",
  'truncated': False,
  'display_text_range': [0, 175],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3975,
  'favorite_count': 35635,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 15 16:54:05 +0000 2021',
  'id': 1471161652850614274,
  'id_str': '1471161652850614274',
  'full_text': 'RT @POTUS: I’m in Kentucky today to meet with local leaders and to survey the damage from the tornadoes and extreme weather. It will take a…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Dec 15 16:42:57 +0000 2021',
   'id': 1471158852854890498,
   'id_str': '1471158852854890498',
   'full_text': 'I’m in Kentucky today to meet with local leaders and to survey the damage from the tornadoes and extreme weather. It will take all of us, working together, to recover and begin rebuilding — and we are committed to providing whatever support is needed for however long it takes.',
   'truncated': False,
   'display_text_range': [0, 277],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2767,
   'favorite_count': 21845,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2767,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 15 04:37:44 +0000 2021',
  'id': 1470976341986230275,
  'id_str': '1470976341986230275',
  'full_text': 'RT @POTUS: As we mark 800,000 American deaths due to COVID-19, we must remember all those we have lost — and pray for their loved ones, esp…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Dec 15 01:28:50 +0000 2021',
   'id': 1470928804470210560,
   'id_str': '1470928804470210560',
   'full_text': 'As we mark 800,000 American deaths due to COVID-19, we must remember all those we have lost — and pray for their loved ones, especially during this holiday season.\n \nPlease, get vaccinated and get your booster. We will beat COVID-19 and move forward, together, as one nation.',
   'truncated': False,
   'display_text_range': [0, 275],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4640,
   'favorite_count': 28368,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4640,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 14 21:09:00 +0000 2021',
  'id': 1470863418257297417,
  'id_str': '1470863418257297417',
  'full_text': 'RT @POTUS: Nine years ago today, we lost 20 precious first-graders and six heroic educators at Sandy Hook Elementary School. As a nation, w…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Dec 14 18:10:45 +0000 2021',
   'id': 1470818556904448005,
   'id_str': '1470818556904448005',
   'full_text': 'Nine years ago today, we lost 20 precious first-graders and six heroic educators at Sandy Hook Elementary School. As a nation, we owe the families of Newtown — and all the other victims of gun violence — more than our prayers. We owe them action. https://t.co/rfLywlcZUa',
   'truncated': False,
   'display_text_range': [0, 246],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1470818404844163076,
      'id_str': '1470818404844163076',
      'indices': [247, 270],
      'media_url': 'http://pbs.twimg.com/media/FGllrZ_X0AQVAII.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FGllrZ_X0AQVAII.jpg',
      'url': 'https://t.co/rfLywlcZUa',
      'display_url': 'pic.twitter.com/rfLywlcZUa',
      'expanded_url': 'https://twitter.com/POTUS/status/1470818556904448005/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1470818404844163076,
      'id_str': '1470818404844163076',
      'indices': [247, 270],
      'media_url': 'http://pbs.twimg.com/media/FGllrZ_X0AQVAII.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FGllrZ_X0AQVAII.jpg',
      'url': 'https://t.co/rfLywlcZUa',
      'display_url': 'pic.twitter.com/rfLywlcZUa',
      'expanded_url': 'https://twitter.com/POTUS/status/1470818556904448005/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 220720,
       'variants': [{'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1470818404844163076/vid/480x270/mdMNdjQZ8BLCHivi.mp4?tag=14'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1470818404844163076/vid/1280x720/fhXUDD_fpuAjeZjs.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1470818404844163076/vid/640x360/0s3pueGB_pg9iQwj.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1470818404844163076/pl/0wCzZus7yolU8S_2.m3u8?tag=14&container=fmp4'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3624,
   'favorite_count': 19114,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3624,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 14 18:10:02 +0000 2021',
  'id': 1470818377358786571,
  'id_str': '1470818377358786571',
  'full_text': 'Life-saving, prescription medication shouldn’t break the bank.\nhttps://t.co/DGDEm6QC1l',
  'truncated': False,
  'display_text_range': [0, 86],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1464728241508339720,
     'id_str': '1464728241508339720',
     'indices': [63, 86],
     'media_url': 'http://pbs.twimg.com/media/FFPCqs_XEAkWyGx.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFPCqs_XEAkWyGx.jpg',
     'url': 'https://t.co/DGDEm6QC1l',
     'display_url': 'pic.twitter.com/DGDEm6QC1l',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1464728349167730688/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1920, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}},
     'source_status_id': 1464728349167730688,
     'source_status_id_str': '1464728349167730688',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1464728241508339720,
     'id_str': '1464728241508339720',
     'indices': [63, 86],
     'media_url': 'http://pbs.twimg.com/media/FFPCqs_XEAkWyGx.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFPCqs_XEAkWyGx.jpg',
     'url': 'https://t.co/DGDEm6QC1l',
     'display_url': 'pic.twitter.com/DGDEm6QC1l',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1464728349167730688/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1920, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}},
     'source_status_id': 1464728349167730688,
     'source_status_id_str': '1464728349167730688',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 6766,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1464728241508339720/vid/720x720/pdsDoTxHVsglaJpd.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1464728241508339720/pl/zBn4YuKzi8Y1AY5p.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1464728241508339720/vid/320x320/BCVD_jaMdPZRER8p.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1464728241508339720/vid/540x540/1UWnSTVnbtQmJ3Mr.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Insulin Prices Under Biden',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1143,
  'favorite_count': 6556,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 14 16:47:01 +0000 2021',
  'id': 1470797484532596737,
  'id_str': '1470797484532596737',
  'full_text': 'As we move into the winter and face the challenges of a new variant, this is a moment for us to put the divisiveness behind us. This is a moment for the nation to unite in a common purpose: To fight this virus, protect one another, and to protect our economic recovery.',
  'truncated': False,
  'display_text_range': [0, 269],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2940,
  'favorite_count': 22338,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 14 00:23:00 +0000 2021',
  'id': 1470549850831958018,
  'id_str': '1470549850831958018',
  'full_text': 'Everybody talks about the price tag for the Build Back Better Act. \n\nBut here’s the truth: If you make less than $400,000 a year, your taxes will not go up one single penny under our plan.',
  'truncated': False,
  'display_text_range': [0, 188],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4873,
  'favorite_count': 31138,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 13 21:30:03 +0000 2021',
  'id': 1470506327524978695,
  'id_str': '1470506327524978695',
  'full_text': "Health care should be a right in this country, not a partisan issue. Diabetes, cancer, and other diseases don’t care whether you're a Democrat or a Republican. \n\nThis is about being able to afford the prescription drugs you need. Congress must come together and finish the job.",
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2310,
  'favorite_count': 14297,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 13 20:10:39 +0000 2021',
  'id': 1470486344069693455,
  'id_str': '1470486344069693455',
  'full_text': 'RT @POTUS: Today, I was briefed by FEMA on our response to the tornadoes and extreme weather that impacted multiple states this weekend. We…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Dec 13 20:09:47 +0000 2021',
   'id': 1470486128096681991,
   'id_str': '1470486128096681991',
   'full_text': 'Today, I was briefed by FEMA on our response to the tornadoes and extreme weather that impacted multiple states this weekend. We’re in close contact with officials on the ground and working to quickly get federal assistance to those in need. We will get through this together. https://t.co/Rm6tbRNxrN',
   'truncated': False,
   'display_text_range': [0, 276],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1470486122665070601,
      'id_str': '1470486122665070601',
      'indices': [277, 300],
      'media_url': 'http://pbs.twimg.com/media/FGg3VmyX0Ak7qKR.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FGg3VmyX0Ak7qKR.jpg',
      'url': 'https://t.co/Rm6tbRNxrN',
      'display_url': 'pic.twitter.com/Rm6tbRNxrN',
      'expanded_url': 'https://twitter.com/POTUS/status/1470486128096681991/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1470486122665070601,
      'id_str': '1470486122665070601',
      'indices': [277, 300],
      'media_url': 'http://pbs.twimg.com/media/FGg3VmyX0Ak7qKR.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FGg3VmyX0Ak7qKR.jpg',
      'url': 'https://t.co/Rm6tbRNxrN',
      'display_url': 'pic.twitter.com/Rm6tbRNxrN',
      'expanded_url': 'https://twitter.com/POTUS/status/1470486128096681991/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004743,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1994,
   'favorite_count': 12549,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1994,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 13 17:02:01 +0000 2021',
  'id': 1470438875202043908,
  'id_str': '1470438875202043908',
  'full_text': 'The pandemic has put a strain on our global supply chains and caused prices to rise around the world. \n\nThe Build Back Better Act will help ease inflationary pressures, lower costs for the American people and extend tax cuts for working families.',
  'truncated': False,
  'display_text_range': [0, 246],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155524,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2062,
  'favorite_count': 12282,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 13 00:10:00 +0000 2021',
  'id': 1470184193070145541,
  'id_str': '1470184193070145541',
  'full_text': 'Our 5-step plan to fight COVID-19 this winter: \n1. Expanding the nationwide booster campaign \n2. Launching new family vaccination clinics \n3. Making at-home tests available \n4. Increasing surge response teams \n5. Accelerating our efforts to vaccinate the rest of the world',
  'truncated': False,
  'display_text_range': [0, 272],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3551,
  'favorite_count': 21135,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Dec 12 15:07:02 +0000 2021',
  'id': 1470047549822320646,
  'id_str': '1470047549822320646',
  'full_text': 'Parents should never have to worry about whether their drinking water is safe for their children. \n\nThe Bipartisan Infrastructure Law will start to replace 100% of our nation’s lead pipes and service lines so that every child across the country has access to clean and safe water.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3186,
  'favorite_count': 21101,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 11 15:01:20 +0000 2021',
  'id': 1469683727320203264,
  'id_str': '1469683727320203264',
  'full_text': 'RT @POTUS: This morning, I was briefed on the devastating tornadoes across the central U.S. To lose a loved one in a storm like this is an…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Dec 11 15:00:32 +0000 2021',
   'id': 1469683523447664642,
   'id_str': '1469683523447664642',
   'full_text': 'This morning, I was briefed on the devastating tornadoes across the central U.S. To lose a loved one in a storm like this is an unimaginable tragedy. We’re working with Governors to ensure they have what they need as the search for survivors and damage assessments continue.',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6242,
   'favorite_count': 45780,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6242,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 11 00:26:13 +0000 2021',
  'id': 1469463494521196544,
  'id_str': '1469463494521196544',
  'full_text': 'America is entering this winter from a position of strength compared to where we were last winter. https://t.co/OE4gj0ZoCA',
  'truncated': False,
  'display_text_range': [0, 98],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1469463443262611461,
     'id_str': '1469463443262611461',
     'indices': [99, 122],
     'media_url': 'http://pbs.twimg.com/media/FGSVQfkX0AMSZp3.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FGSVQfkX0AMSZp3.jpg',
     'url': 'https://t.co/OE4gj0ZoCA',
     'display_url': 'pic.twitter.com/OE4gj0ZoCA',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1469463494521196544/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1469463443262611461,
     'id_str': '1469463443262611461',
     'indices': [99, 122],
     'media_url': 'http://pbs.twimg.com/media/FGSVQfkX0AMSZp3.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FGSVQfkX0AMSZp3.jpg',
     'url': 'https://t.co/OE4gj0ZoCA',
     'display_url': 'pic.twitter.com/OE4gj0ZoCA',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1469463494521196544/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 35969,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1469463443262611461/vid/320x320/uxuhxjRa-YX6JKaG.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1469463443262611461/vid/540x540/TsArMvjA_K3Z-dKQ.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1469463443262611461/vid/720x720/2QIz35dsounS0op8.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1469463443262611461/pl/nZSTu-P1V5QOYg_e.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Get vaccinated',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1255,
  'favorite_count': 8438,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 10 22:27:06 +0000 2021',
  'id': 1469433519747526657,
  'id_str': '1469433519747526657',
  'full_text': 'RT @POTUS: I am deeply troubled by reports of Kellogg’s plans to permanently replace striking workers. Permanently replacing striking worke…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Dec 10 22:22:41 +0000 2021',
   'id': 1469432406897831938,
   'id_str': '1469432406897831938',
   'full_text': 'I am deeply troubled by reports of Kellogg’s plans to permanently replace striking workers. Permanently replacing striking workers is an existential attack on the union and its members’ jobs and livelihoods. I strongly support legislation that would ban that practice.',
   'truncated': False,
   'display_text_range': [0, 268],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 12860,
   'favorite_count': 84724,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 12860,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 10 19:55:01 +0000 2021',
  'id': 1469395245897076737,
  'id_str': '1469395245897076737',
  'full_text': 'We are going to reinvest in our country and our people to continue building a better America with union jobs.\nhttps://t.co/qbfXOe7GeN',
  'truncated': False,
  'display_text_range': [0, 133],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1468762826034630657,
     'id_str': '1468762826034630657',
     'indices': [110, 133],
     'media_url': 'http://pbs.twimg.com/media/FGIYC0DXMAQjlMt.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FGIYC0DXMAQjlMt.jpg',
     'url': 'https://t.co/qbfXOe7GeN',
     'display_url': 'pic.twitter.com/qbfXOe7GeN',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1468762869936582656/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1468762869936582656,
     'source_status_id_str': '1468762869936582656',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1468762826034630657,
     'id_str': '1468762826034630657',
     'indices': [110, 133],
     'media_url': 'http://pbs.twimg.com/media/FGIYC0DXMAQjlMt.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FGIYC0DXMAQjlMt.jpg',
     'url': 'https://t.co/qbfXOe7GeN',
     'display_url': 'pic.twitter.com/qbfXOe7GeN',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1468762869936582656/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1468762869936582656,
     'source_status_id_str': '1468762869936582656',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 19219,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1468762826034630657/vid/540x540/lGZ6N9TWRHdOm_5Z.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1468762826034630657/pl/E383ossWTY9fh2i-.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1468762826034630657/vid/720x720/b-ADe_PZjV_CjwJ9.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1468762826034630657/vid/320x320/HuFSKCTEvLpb50co.mp4?tag=14'}]},
     'additional_media_info': {'title': 'An infrastructure decade',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1042,
  'favorite_count': 6495,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 10 01:00:03 +0000 2021',
  'id': 1469109624234196993,
  'id_str': '1469109624234196993',
  'full_text': 'Long gone are the days when we hear about infrastructure week with no follow through. From now on, we’re in the infrastructure decade.',
  'truncated': False,
  'display_text_range': [0, 134],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3572,
  'favorite_count': 24973,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 09 21:28:00 +0000 2021',
  'id': 1469056259148206083,
  'id_str': '1469056259148206083',
  'full_text': '17 Nobel Prize winners in economics say the Build Back Better Act will help ease long-term inflationary pressures and make our economy stronger. \n\nNot a single Republican in Congress supports it.',
  'truncated': False,
  'display_text_range': [0, 195],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5874,
  'favorite_count': 27219,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 09 16:38:29 +0000 2021',
  'id': 1468983399952044038,
  'id_str': '1468983399952044038',
  'full_text': 'RT @POTUS: New unemployment claims fell to their lowest level in more than 50 years. \n\nThat’s not an accident – it’s a result of my economi…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Dec 09 14:35:30 +0000 2021',
   'id': 1468952450967261185,
   'id_str': '1468952450967261185',
   'full_text': 'New unemployment claims fell to their lowest level in more than 50 years. \n\nThat’s not an accident – it’s a result of my economic plan.',
   'truncated': False,
   'display_text_range': [0, 135],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9761,
   'favorite_count': 58822,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9761,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 09 00:06:03 +0000 2021',
  'id': 1468733644336422916,
  'id_str': '1468733644336422916',
  'full_text': 'Americans that require insulin should not have to suffer and sacrifice just to get a drug that costs a few dollars to make. \n\nThe Build Back Better Act will cap insulin at $35 a month.\nhttps://t.co/Ox0att5OYa',
  'truncated': False,
  'display_text_range': [0, 208],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1468004186151342085,
     'id_str': '1468004186151342085',
     'indices': [185, 208],
     'media_url': 'http://pbs.twimg.com/media/FF9mD_XX0AIqThd.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FF9mD_XX0AIqThd.jpg',
     'url': 'https://t.co/Ox0att5OYa',
     'display_url': 'pic.twitter.com/Ox0att5OYa',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1468004226987089926/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1468004226987089926,
     'source_status_id_str': '1468004226987089926',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1468004186151342085,
     'id_str': '1468004186151342085',
     'indices': [185, 208],
     'media_url': 'http://pbs.twimg.com/media/FF9mD_XX0AIqThd.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FF9mD_XX0AIqThd.jpg',
     'url': 'https://t.co/Ox0att5OYa',
     'display_url': 'pic.twitter.com/Ox0att5OYa',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1468004226987089926/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1468004226987089926,
     'source_status_id_str': '1468004226987089926',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 27427,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1468004186151342085/pl/CIuC9lzDt6mL42tZ.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1468004186151342085/vid/320x320/jlj5vpvUUSalqVZi.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1468004186151342085/vid/720x720/tWkJhVxunW9d4VnX.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1468004186151342085/vid/540x540/K5DQ1mp_B-nT8cVv.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1539,
  'favorite_count': 9206,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 08 22:37:00 +0000 2021',
  'id': 1468711236527394816,
  'id_str': '1468711236527394816',
  'full_text': 'Last year, more than half of the schools in America were closed. This year, 99% of schools are back open, and 20 million children ages 5 and older have already received their vaccine. Let’s keep it going.',
  'truncated': False,
  'display_text_range': [0, 204],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3351,
  'favorite_count': 24170,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 08 17:06:03 +0000 2021',
  'id': 1468627948425166853,
  'id_str': '1468627948425166853',
  'full_text': 'The Bipartisan Infrastructure Law builds back our bridges, water systems, power lines, electric grid better and stronger, making them more resilient to the effects of climate change. No American should have to deal with flooding or losing power for days and weeks after a storm.',
  'truncated': False,
  'display_text_range': [0, 278],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1856,
  'favorite_count': 10991,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 08 15:29:51 +0000 2021',
  'id': 1468603740638883844,
  'id_str': '1468603740638883844',
  'full_text': 'RT @POTUS: The new data from Pfizer on vaccine effectiveness against Omicron is encouraging. This reinforces what my medical advisors have…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Dec 08 15:27:11 +0000 2021',
   'id': 1468603069579636740,
   'id_str': '1468603069579636740',
   'full_text': 'The new data from Pfizer on vaccine effectiveness against Omicron is encouraging. This reinforces what my medical advisors have been emphasizing: that boosters give you the highest protection yet.\n\nAnyone who is eligible and has not been boosted should go get a booster today.',
   'truncated': False,
   'display_text_range': [0, 276],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3899,
   'favorite_count': 24581,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3899,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 07 21:35:01 +0000 2021',
  'id': 1468333247675437061,
  'id_str': '1468333247675437061',
  'full_text': 'Since I was sworn in on January 20, our economy has created nearly 6 million new jobs—a record for a new president.\nhttps://t.co/Q0C99vrJYI',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1466945602126819332,
     'id_str': '1466945602126819332',
     'indices': [116, 139],
     'media_url': 'http://pbs.twimg.com/media/FFujTRFX0AQ-hOx.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFujTRFX0AQ-hOx.jpg',
     'url': 'https://t.co/Q0C99vrJYI',
     'display_url': 'pic.twitter.com/Q0C99vrJYI',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1466945661237141504/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1920, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}},
     'source_status_id': 1466945661237141504,
     'source_status_id_str': '1466945661237141504',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1466945602126819332,
     'id_str': '1466945602126819332',
     'indices': [116, 139],
     'media_url': 'http://pbs.twimg.com/media/FFujTRFX0AQ-hOx.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFujTRFX0AQ-hOx.jpg',
     'url': 'https://t.co/Q0C99vrJYI',
     'display_url': 'pic.twitter.com/Q0C99vrJYI',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1466945661237141504/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1920, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}},
     'source_status_id': 1466945661237141504,
     'source_status_id_str': '1466945661237141504',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 11050,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1466945602126819332/vid/540x540/KEd7R94WRKk8_YRc.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1466945602126819332/vid/320x320/WnkqIEEw09MZtK4G.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1466945602126819332/vid/720x720/SyPnQPfoZt9qr8ir.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1466945602126819332/pl/jFHiM3pblo04clHo.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Jobs Created In The First Ten Months of Presidency',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5405,
  'favorite_count': 26903,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 07 19:51:01 +0000 2021',
  'id': 1468307075491057675,
  'id_str': '1468307075491057675',
  'full_text': 'Thanks to the American Rescue Plan, we’ve cut child poverty in America by more than 40%. \n\nMany children who spent last Christmas in poverty will not this holiday season.',
  'truncated': False,
  'display_text_range': [0, 170],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2924,
  'favorite_count': 19791,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 07 16:45:03 +0000 2021',
  'id': 1468260275820376069,
  'id_str': '1468260275820376069',
  'full_text': 'My Build Back Better bill takes three major steps to lower the cost for families dealing with diabetes:\n1️⃣ Cap cost sharing for insulin at $35\n2️⃣ Get health insurance for folks with diabetes who don’t already have it\n3️⃣ Keep drug companies accountable when they raise prices',
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1656,
  'favorite_count': 9026,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 07 15:01:27 +0000 2021',
  'id': 1468234203049467913,
  'id_str': '1468234203049467913',
  'full_text': 'RT @POTUS: As we mark National Pearl Harbor Remembrance Day, we honor the patriots who perished, commemorate the valor of all those who def…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Dec 07 14:46:23 +0000 2021',
   'id': 1468230414439436298,
   'id_str': '1468230414439436298',
   'full_text': 'As we mark National Pearl Harbor Remembrance Day, we honor the patriots who perished, commemorate the valor of all those who defended our nation, and recommit ourselves to carrying forth the ensuing peace and reconciliation that brought a better future for our world. https://t.co/I12XoYnwCK',
   'truncated': False,
   'display_text_range': [0, 267],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1468230408487817218,
      'id_str': '1468230408487817218',
      'indices': [268, 291],
      'media_url': 'http://pbs.twimg.com/media/FGAzxwpX0AIAT5J.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FGAzxwpX0AIAT5J.jpg',
      'url': 'https://t.co/I12XoYnwCK',
      'display_url': 'pic.twitter.com/I12XoYnwCK',
      'expanded_url': 'https://twitter.com/POTUS/status/1468230414439436298/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1468230408487817218,
      'id_str': '1468230408487817218',
      'indices': [268, 291],
      'media_url': 'http://pbs.twimg.com/media/FGAzxwpX0AIAT5J.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FGAzxwpX0AIAT5J.jpg',
      'url': 'https://t.co/I12XoYnwCK',
      'display_url': 'pic.twitter.com/I12XoYnwCK',
      'expanded_url': 'https://twitter.com/POTUS/status/1468230414439436298/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3654,
   'favorite_count': 24958,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3654,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 07 02:08:00 +0000 2021',
  'id': 1468039559460102146,
  'id_str': '1468039559460102146',
  'full_text': 'America continues to add jobs at a record pace and nearly 6 million new jobs have been created since I was sworn in on January 20. Our economy is moving in the right direction, but we have more to do.',
  'truncated': False,
  'display_text_range': [0, 200],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2648,
  'favorite_count': 17229,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Dec 07 00:16:01 +0000 2021',
  'id': 1468011376002187271,
  'id_str': '1468011376002187271',
  'full_text': 'Today, one in four Americans struggle to afford their prescription drugs, resulting in nearly 30% of patients either skipping doses or even cutting pills in half just to afford the costs. \n\nMy Build Back Better Bill will change that.',
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1915,
  'favorite_count': 11801,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 06 23:02:16 +0000 2021',
  'id': 1467992818761318402,
  'id_str': '1467992818761318402',
  'full_text': "RT @POTUS: Right now, Americans pay as much as $1,000 a month for insulin.\n\nUnder my Build Back Better Act it'll be $35.",
  'truncated': False,
  'display_text_range': [0, 120],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Dec 06 22:56:01 +0000 2021',
   'id': 1467991247361040393,
   'id_str': '1467991247361040393',
   'full_text': "Right now, Americans pay as much as $1,000 a month for insulin.\n\nUnder my Build Back Better Act it'll be $35.",
   'truncated': False,
   'display_text_range': [0, 109],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11845,
   'favorite_count': 76531,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11845,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 06 21:40:00 +0000 2021',
  'id': 1467972117018853390,
  'id_str': '1467972117018853390',
  'full_text': 'Any country that out educates us will outcompete us. \n\nThat’s why my Build Back Better Act will provide universal pre-K to every 3- and 4-year old in America and increase the maximum Pell Grant. This is how we invest in American families.',
  'truncated': False,
  'display_text_range': [0, 238],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2263,
  'favorite_count': 14069,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 06 17:04:21 +0000 2021',
  'id': 1467902744640032769,
  'id_str': '1467902744640032769',
  'full_text': 'RT @POTUS: Prescription drug companies have gotten away with charging outrageous prices for too long — and it needs to change. \n\nMy Build B…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Dec 06 15:39:00 +0000 2021',
   'id': 1467881265110171649,
   'id_str': '1467881265110171649',
   'full_text': 'Prescription drug companies have gotten away with charging outrageous prices for too long — and it needs to change. \n\nMy Build Back Better Act will allow Medicare to negotiate prices — lowering costs across the board for Americans.',
   'truncated': False,
   'display_text_range': [0, 231],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3319,
   'favorite_count': 20678,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3319,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 06 16:36:01 +0000 2021',
  'id': 1467895614503637001,
  'id_str': '1467895614503637001',
  'full_text': 'I’m proud to say that the typical American family has more money in their pockets than they did last year, or the year before that, thanks to the American Rescue Plan.',
  'truncated': False,
  'display_text_range': [0, 167],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3762,
  'favorite_count': 29517,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Dec 06 00:24:10 +0000 2021',
  'id': 1467651042611535873,
  'id_str': '1467651042611535873',
  'full_text': 'Time for action. https://t.co/7n23MWapzT',
  'truncated': False,
  'display_text_range': [0, 16],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1467651000202928134,
     'id_str': '1467651000202928134',
     'indices': [17, 40],
     'media_url': 'http://pbs.twimg.com/media/FF4k169XwAgoqEC.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FF4k169XwAgoqEC.jpg',
     'url': 'https://t.co/7n23MWapzT',
     'display_url': 'pic.twitter.com/7n23MWapzT',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1467651042611535873/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1467651000202928134,
     'id_str': '1467651000202928134',
     'indices': [17, 40],
     'media_url': 'http://pbs.twimg.com/media/FF4k169XwAgoqEC.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FF4k169XwAgoqEC.jpg',
     'url': 'https://t.co/7n23MWapzT',
     'display_url': 'pic.twitter.com/7n23MWapzT',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1467651042611535873/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 10977,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1467651000202928134/pl/WLIUcotCDHtNifg2.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1467651000202928134/vid/720x720/2Tb3r-7ALTVujEcN.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1467651000202928134/vid/320x320/WPrwAvi7MJJeTY8n.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1467651000202928134/vid/540x540/DHi1u1wWYVuQv0Ye.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Time for action. ',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1492,
  'favorite_count': 9765,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Dec 05 22:16:00 +0000 2021',
  'id': 1467618788921196545,
  'id_str': '1467618788921196545',
  'full_text': 'The Bipartisan Infrastructure Law invests $42 billion to modernize our ports and our airports, making it easier for companies to get goods to market, reducing supply chain bottlenecks, lowering costs for families, and making sure that what you need gets to your home on time.',
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2321,
  'favorite_count': 14599,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Dec 05 19:07:06 +0000 2021',
  'id': 1467571250751057926,
  'id_str': '1467571250751057926',
  'full_text': 'RT @POTUS: Bob Dole was a man to be admired by Americans. He had an unerring sense of integrity and honor. May God bless him, and may our n…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Dec 05 19:05:44 +0000 2021',
   'id': 1467570905303896068,
   'id_str': '1467570905303896068',
   'full_text': 'Bob Dole was a man to be admired by Americans. He had an unerring sense of integrity and honor. May God bless him, and may our nation draw upon his legacy of decency, dignity, good humor, and patriotism for all time.',
   'truncated': False,
   'display_text_range': [0, 216],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4634,
   'favorite_count': 42616,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4634,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 04 22:35:00 +0000 2021',
  'id': 1467261181312258050,
  'id_str': '1467261181312258050',
  'full_text': "Our infrastructure used to be rated the best in the world—that’s not hyperbole. But now we rank 13th in the world for the quality of our infrastructure.\n \nWith our infrastructure law, we're turning things around in a big way. And that starts with our roads and bridges.",
  'truncated': False,
  'display_text_range': [0, 269],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2367,
  'favorite_count': 15350,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 04 18:27:00 +0000 2021',
  'id': 1467198770324594690,
  'id_str': '1467198770324594690',
  'full_text': "What does passing the Build Back Better Act mean?\n\nFor millions of American families, it means the bills you're paying right now for daycare could be capped at 7% of your income.\n\nIt means the cost of your prescription drugs and care for your elder parents will be cheaper.",
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1485,
  'favorite_count': 9053,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 04 16:32:00 +0000 2021',
  'id': 1467169830696534016,
  'id_str': '1467169830696534016',
  'full_text': 'America has always been a nation of possibilities. Instead of continuing tax cuts for big corporations and the wealthiest Americans, let’s ensure they pay their fair share and lower the cost of child care and prescription drugs by passing the Build Back Better Act in the Senate.',
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2399,
  'favorite_count': 14646,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 04 15:30:11 +0000 2021',
  'id': 1467154274043973638,
  'id_str': '1467154274043973638',
  'full_text': 'RT @POTUS: The People’s House is officially set for the holiday season. https://t.co/puRut8T4r0',
  'truncated': False,
  'display_text_range': [0, 95],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1467153957290184705,
     'id_str': '1467153957290184705',
     'indices': [72, 95],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1467153957290184705/img/VsNh4cqkSLMwUZJ1.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1467153957290184705/img/VsNh4cqkSLMwUZJ1.jpg',
     'url': 'https://t.co/puRut8T4r0',
     'display_url': 'pic.twitter.com/puRut8T4r0',
     'expanded_url': 'https://twitter.com/POTUS/status/1467154047748780039/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
     'source_status_id': 1467154047748780039,
     'source_status_id_str': '1467154047748780039',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1467153957290184705,
     'id_str': '1467153957290184705',
     'indices': [72, 95],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1467153957290184705/img/VsNh4cqkSLMwUZJ1.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1467153957290184705/img/VsNh4cqkSLMwUZJ1.jpg',
     'url': 'https://t.co/puRut8T4r0',
     'display_url': 'pic.twitter.com/puRut8T4r0',
     'expanded_url': 'https://twitter.com/POTUS/status/1467154047748780039/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
     'source_status_id': 1467154047748780039,
     'source_status_id_str': '1467154047748780039',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [16, 9],
      'duration_millis': 46629,
      'variants': [{'bitrate': 2176000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1467153957290184705/vid/1280x720/tZcMapCCfqfEtPXs.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1467153957290184705/vid/640x360/v8R1m0egAJ3yis9y.mp4?tag=14'},
       {'bitrate': 288000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1467153957290184705/vid/480x270/cuubyVJ2cgHa-UDJ.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1467153957290184705/pl/08HYY7gFRPrH2hw_.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004744,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Dec 04 15:29:18 +0000 2021',
   'id': 1467154047748780039,
   'id_str': '1467154047748780039',
   'full_text': 'The People’s House is officially set for the holiday season. https://t.co/puRut8T4r0',
   'truncated': False,
   'display_text_range': [0, 60],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1467153957290184705,
      'id_str': '1467153957290184705',
      'indices': [61, 84],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1467153957290184705/img/VsNh4cqkSLMwUZJ1.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1467153957290184705/img/VsNh4cqkSLMwUZJ1.jpg',
      'url': 'https://t.co/puRut8T4r0',
      'display_url': 'pic.twitter.com/puRut8T4r0',
      'expanded_url': 'https://twitter.com/POTUS/status/1467154047748780039/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1467153957290184705,
      'id_str': '1467153957290184705',
      'indices': [61, 84],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1467153957290184705/img/VsNh4cqkSLMwUZJ1.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1467153957290184705/img/VsNh4cqkSLMwUZJ1.jpg',
      'url': 'https://t.co/puRut8T4r0',
      'display_url': 'pic.twitter.com/puRut8T4r0',
      'expanded_url': 'https://twitter.com/POTUS/status/1467154047748780039/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 46629,
       'variants': [{'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1467153957290184705/vid/1280x720/tZcMapCCfqfEtPXs.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1467153957290184705/vid/640x360/v8R1m0egAJ3yis9y.mp4?tag=14'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1467153957290184705/vid/480x270/cuubyVJ2cgHa-UDJ.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1467153957290184705/pl/08HYY7gFRPrH2hw_.m3u8?tag=14&container=fmp4'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8023,
   'favorite_count': 65559,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8023,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Dec 04 01:48:00 +0000 2021',
  'id': 1466947362794971138,
  'id_str': '1466947362794971138',
  'full_text': 'There is no worse feeling than not being able to afford the life-saving medication a loved one may need. The Build Back Better Act will cap the cost of insulin at $35/month so families can breathe a little easier.',
  'truncated': False,
  'display_text_range': [0, 213],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4666,
  'favorite_count': 33965,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 03 21:03:00 +0000 2021',
  'id': 1466875641693933573,
  'id_str': '1466875641693933573',
  'full_text': 'We can’t just build back to where we were before. \n\nWhen roads are continuously wiped out by flooding, we must build them higher. \nWhen high power lines come down from severe weather, they must be made more resilient. \n\nThis is what I mean when I say we need to build back better.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1752,
  'favorite_count': 11376,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 03 19:20:10 +0000 2021',
  'id': 1466849761722605576,
  'id_str': '1466849761722605576',
  'full_text': 'Imagine running up higher costs for American families just to score a few political points. But that’s what Republicans are doing. https://t.co/vIc8COfsPL',
  'truncated': False,
  'display_text_range': [0, 130],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1466849722224816131,
     'id_str': '1466849722224816131',
     'indices': [131, 154],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1466849722224816131/img/CP12sa8ZtezJSPDS.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1466849722224816131/img/CP12sa8ZtezJSPDS.jpg',
     'url': 'https://t.co/vIc8COfsPL',
     'display_url': 'pic.twitter.com/vIc8COfsPL',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1466849761722605576/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1466849722224816131,
     'id_str': '1466849722224816131',
     'indices': [131, 154],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1466849722224816131/img/CP12sa8ZtezJSPDS.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1466849722224816131/img/CP12sa8ZtezJSPDS.jpg',
     'url': 'https://t.co/vIc8COfsPL',
     'display_url': 'pic.twitter.com/vIc8COfsPL',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1466849761722605576/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 18785,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1466849722224816131/vid/720x720/AED2I_vbcHjmWlcW.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1466849722224816131/pl/lPet8yA3bd3rX1Dp.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1466849722224816131/vid/540x540/aVajr1KhLhmzTL_G.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1466849722224816131/vid/320x320/Ous0OK2cplPSXWdS.mp4?tag=14'}]},
     'additional_media_info': {'title': '"Nothing will be more expensive for American families than a NO vote on the Build Back Better Plan"',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1465,
  'favorite_count': 7320,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 03 15:13:21 +0000 2021',
  'id': 1466787648824090630,
  'id_str': '1466787648824090630',
  'full_text': 'RT @POTUS: Today, we have incredible news that our unemployment rate has fallen to 4.2%  – a level experts didn’t expect us to achieve unti…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Dec 03 15:11:03 +0000 2021',
   'id': 1466787070341521410,
   'id_str': '1466787070341521410',
   'full_text': 'Today, we have incredible news that our unemployment rate has fallen to 4.2%  – a level experts didn’t expect us to achieve until 2024. \n\nWe’ve created 588,000 jobs per month on average this year – a record. \n\nAmerica is back to work, and our jobs recovery is going strong.',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004744,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8206,
   'favorite_count': 52628,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8206,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Dec 03 01:23:01 +0000 2021',
  'id': 1466578686031929354,
  'id_str': '1466578686031929354',
  'full_text': 'Caring for our veterans and their families when they return home is a lifelong commitment our nation owes to those who served our country—and this week three bills became law that help us live up to that sacred obligation. \nhttps://t.co/kEjsK21Ar9',
  'truncated': False,
  'display_text_range': [0, 247],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1465783193626361866,
     'id_str': '1465783193626361866',
     'indices': [224, 247],
     'media_url': 'http://pbs.twimg.com/media/FFeCFWUXIAMfMqc.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFeCFWUXIAMfMqc.jpg',
     'url': 'https://t.co/kEjsK21Ar9',
     'display_url': 'pic.twitter.com/kEjsK21Ar9',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1465783237603639305/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1465783237603639305,
     'source_status_id_str': '1465783237603639305',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1465783193626361866,
     'id_str': '1465783193626361866',
     'indices': [224, 247],
     'media_url': 'http://pbs.twimg.com/media/FFeCFWUXIAMfMqc.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFeCFWUXIAMfMqc.jpg',
     'url': 'https://t.co/kEjsK21Ar9',
     'display_url': 'pic.twitter.com/kEjsK21Ar9',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1465783237603639305/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1465783237603639305,
     'source_status_id_str': '1465783237603639305',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 6306,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1465783193626361866/pl/JZ70NjghJDDSW9uC.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465783193626361866/vid/320x320/T4B1g2TRvDi2-Ftk.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465783193626361866/vid/540x540/DaNV65bBK_AXyknw.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465783193626361866/vid/720x720/UZX2YFpyFZxTSL89.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden Signs Three Bipartisan Bills for Veterans',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1342,
  'favorite_count': 8511,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 02 20:58:01 +0000 2021',
  'id': 1466511999458693124,
  'id_str': '1466511999458693124',
  'full_text': 'I know that this country can deliver for working families. We have before—and we will again.',
  'truncated': False,
  'display_text_range': [0, 92],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2380,
  'favorite_count': 19889,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 02 17:59:01 +0000 2021',
  'id': 1466466951069327360,
  'id_str': '1466466951069327360',
  'full_text': "Trickle-down economics has never worked. That’s why our infrastructure law is a blue-collar blueprint to rebuild America. The only way this works is if blue-collar Americans do the rebuilding.\n\nThat's the only way it's ever worked and we're going to do it again. Mark my words.",
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2671,
  'favorite_count': 15302,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Dec 02 14:45:02 +0000 2021',
  'id': 1466418132889837574,
  'id_str': '1466418132889837574',
  'full_text': 'Republicans would rather the bills at your kitchen table be higher so the taxes in big mansions can be lower. \n\nLet me tell you something: Nothing will be more expensive for American families than a NO vote on the Build Back Better plan.',
  'truncated': False,
  'display_text_range': [0, 237],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3930,
  'favorite_count': 21444,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 01 23:27:00 +0000 2021',
  'id': 1466187103226798082,
  'id_str': '1466187103226798082',
  'full_text': "In ten months, we've gone from an economy that was shut down due to the pandemic, to an economy that is leading the world in economic growth. Between record new small business creation to record new job creation, we’re rebuilding an economy where everyone comes along.",
  'truncated': False,
  'display_text_range': [0, 268],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4074,
  'favorite_count': 24755,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Dec 01 21:35:00 +0000 2021',
  'id': 1466158919215198209,
  'id_str': '1466158919215198209',
  'full_text': 'No parent should have to sit outside a fast food restaurant to use the internet so that their child can do their homework.\n\nOur infrastructure law will expand access to affordable, high-speed internet, helping every household access what they need to work, learn, and live.',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155525,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3070,
  'favorite_count': 24121,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 30 22:47:00 +0000 2021',
  'id': 1465814649664851970,
  'id_str': '1465814649664851970',
  'full_text': 'There’s still time to get your first shot, your booster shot, or to get your children vaccinated before Christmas. Get vaccinated.',
  'truncated': False,
  'display_text_range': [0, 130],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4731,
  'favorite_count': 39340,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 30 20:16:01 +0000 2021',
  'id': 1465776653267779589,
  'id_str': '1465776653267779589',
  'full_text': "We're going to fight the Omicron variant the way we’ve been fighting COVID-19 since the beginning—with scientific and knowledgeable actions and speed, not chaos and confusion.",
  'truncated': False,
  'display_text_range': [0, 175],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3859,
  'favorite_count': 34484,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 30 18:15:06 +0000 2021',
  'id': 1465746222573101068,
  'id_str': '1465746222573101068',
  'full_text': 'The Bipartisan Infrastructure Law will ensure no parent will have to sit in a fast food parking lot just so their child can access the internet to do their homework.',
  'truncated': False,
  'display_text_range': [0, 165],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1794,
  'favorite_count': 12801,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 30 01:12:00 +0000 2021',
  'id': 1465488753577897991,
  'id_str': '1465488753577897991',
  'full_text': 'My simple message to folks worried about the Omicron variant: Get vaccinated.\nhttps://t.co/O61tmKGEW6',
  'truncated': False,
  'display_text_range': [0, 101],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1465410330855723014,
     'id_str': '1465410330855723014',
     'indices': [78, 101],
     'media_url': 'http://pbs.twimg.com/media/FFYu9p9XEAkHQF_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFYu9p9XEAkHQF_.jpg',
     'url': 'https://t.co/O61tmKGEW6',
     'display_url': 'pic.twitter.com/O61tmKGEW6',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1465410370235949079/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1465410370235949079,
     'source_status_id_str': '1465410370235949079',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1465410330855723014,
     'id_str': '1465410330855723014',
     'indices': [78, 101],
     'media_url': 'http://pbs.twimg.com/media/FFYu9p9XEAkHQF_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFYu9p9XEAkHQF_.jpg',
     'url': 'https://t.co/O61tmKGEW6',
     'display_url': 'pic.twitter.com/O61tmKGEW6',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1465410370235949079/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1465410370235949079,
     'source_status_id_str': '1465410370235949079',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 11378,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465410330855723014/vid/320x320/bJWriB6hp6j4eUI8.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1465410330855723014/pl/ilK-wadvDKU0bkmX.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465410330855723014/vid/540x540/f2TPeg9ydzNwGKsi.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465410330855723014/vid/720x720/LBXSE5XqYMIX9xYq.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Get vaccinated',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2603,
  'favorite_count': 16472,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 29 21:49:12 +0000 2021',
  'id': 1465437716624166917,
  'id_str': '1465437716624166917',
  'full_text': "Since I was sworn in on January 20th, we’ve seen a record 5.6 million in job growth— with more jobs created at this point than ever before in American history. We’ve made enormous progress and we're on our way to building an economy that ensures no one is left behind. https://t.co/Lmbc7kbrrU",
  'truncated': False,
  'display_text_range': [0, 268],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1465437666590310419,
     'id_str': '1465437666590310419',
     'indices': [269, 292],
     'media_url': 'http://pbs.twimg.com/media/FFZH1WTWYAEgf-T.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFZH1WTWYAEgf-T.jpg',
     'url': 'https://t.co/Lmbc7kbrrU',
     'display_url': 'pic.twitter.com/Lmbc7kbrrU',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1465437716624166917/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1920, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1465437666590310419,
     'id_str': '1465437666590310419',
     'indices': [269, 292],
     'media_url': 'http://pbs.twimg.com/media/FFZH1WTWYAEgf-T.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFZH1WTWYAEgf-T.jpg',
     'url': 'https://t.co/Lmbc7kbrrU',
     'display_url': 'pic.twitter.com/Lmbc7kbrrU',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1465437716624166917/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1920, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 10016,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1465437666590310419/pl/szCHO9UIGslD8Bsm.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465437666590310419/vid/320x320/bDSqRqwKbFgyZIzk.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465437666590310419/vid/720x720/1mzWn3VsDnxVYoZR.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1465437666590310419/vid/540x540/1BZUGcRtGdiNpd7u.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Jobs Created in the First Nine Months of Presidency',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3132,
  'favorite_count': 14499,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 29 21:02:21 +0000 2021',
  'id': 1465425924199964682,
  'id_str': '1465425924199964682',
  'full_text': 'RT @POTUS: The Omicron variant is a cause for concern — but not panic.\n \nWe will fight this variant with science and speed — not chaos and…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Nov 29 20:50:52 +0000 2021',
   'id': 1465423033817092113,
   'id_str': '1465423033817092113',
   'full_text': 'The Omicron variant is a cause for concern — but not panic.\n \nWe will fight this variant with science and speed — not chaos and confusion.',
   'truncated': False,
   'display_text_range': [0, 138],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6749,
   'favorite_count': 53973,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6749,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 29 20:30:02 +0000 2021',
  'id': 1465417793642405888,
  'id_str': '1465417793642405888',
  'full_text': 'The Build Back Better Act extends the expanded Child Tax Credit, which has been a game changer for working families. It helped roughly 60 million children and helped cut child poverty in America by more than 40%.',
  'truncated': False,
  'display_text_range': [0, 212],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2149,
  'favorite_count': 13924,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 29 18:15:21 +0000 2021',
  'id': 1465383897529831429,
  'id_str': '1465383897529831429',
  'full_text': 'RT @POTUS: It will be a few weeks before we know everything we need to know about how strongly the existing vaccines protect against the ne…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Nov 29 18:14:03 +0000 2021',
   'id': 1465383572563537920,
   'id_str': '1465383572563537920',
   'full_text': 'It will be a few weeks before we know everything we need to know about how strongly the existing vaccines protect against the new variant. But Dr. Fauci and our medical team believe that our vaccines will continue to provide a degree of protection against severe disease.',
   'truncated': False,
   'display_text_range': [0, 271],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2501,
   'favorite_count': 17595,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2501,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 28 17:15:01 +0000 2021',
  'id': 1465006327688749058,
  'id_str': '1465006327688749058',
  'full_text': 'Jill and I send our warmest wishes to everyone celebrating Hanukkah in the United States and around the world. May this festival of lights bring blessings upon you and your loved ones for happiness and health. Happy Hanukkah!',
  'truncated': False,
  'display_text_range': [0, 225],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3142,
  'favorite_count': 33046,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 27 16:52:00 +0000 2021',
  'id': 1464638148357595141,
  'id_str': '1464638148357595141',
  'full_text': 'Small businesses employ millions of Americans and strengthen communities across the country. This Small Business Saturday, I encourage you to support the folks in your local community by shopping small.',
  'truncated': False,
  'display_text_range': [0, 202],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2534,
  'favorite_count': 19315,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 27 15:43:05 +0000 2021',
  'id': 1464620803652206605,
  'id_str': '1464620803652206605',
  'full_text': 'RT @POTUS: Small businesses are the backbone of communities across the country — and it’s crucial we support them during the holiday season…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Nov 27 15:08:17 +0000 2021',
   'id': 1464612047153414151,
   'id_str': '1464612047153414151',
   'full_text': 'Small businesses are the backbone of communities across the country — and it’s crucial we support them during the holiday season and all year round. Shop small. https://t.co/QCq1Yvwl1K',
   'truncated': False,
   'display_text_range': [0, 160],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1464612037175169030,
      'id_str': '1464612037175169030',
      'indices': [161, 184],
      'media_url': 'http://pbs.twimg.com/media/FFNY41GWUAYNre5.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FFNY41GWUAYNre5.jpg',
      'url': 'https://t.co/QCq1Yvwl1K',
      'display_url': 'pic.twitter.com/QCq1Yvwl1K',
      'expanded_url': 'https://twitter.com/POTUS/status/1464612047153414151/photo/1',
      'type': 'photo',
      'sizes': {'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1464612037175169030,
      'id_str': '1464612037175169030',
      'indices': [161, 184],
      'media_url': 'http://pbs.twimg.com/media/FFNY41GWUAYNre5.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FFNY41GWUAYNre5.jpg',
      'url': 'https://t.co/QCq1Yvwl1K',
      'display_url': 'pic.twitter.com/QCq1Yvwl1K',
      'expanded_url': 'https://twitter.com/POTUS/status/1464612047153414151/photo/1',
      'type': 'photo',
      'sizes': {'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'}}},
     {'id': 1464612040492920834,
      'id_str': '1464612040492920834',
      'indices': [161, 184],
      'media_url': 'http://pbs.twimg.com/media/FFNY5BdXMAI8OPG.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FFNY5BdXMAI8OPG.jpg',
      'url': 'https://t.co/QCq1Yvwl1K',
      'display_url': 'pic.twitter.com/QCq1Yvwl1K',
      'expanded_url': 'https://twitter.com/POTUS/status/1464612047153414151/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}},
     {'id': 1464612043571580941,
      'id_str': '1464612043571580941',
      'indices': [161, 184],
      'media_url': 'http://pbs.twimg.com/media/FFNY5M7X0A07Okp.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FFNY5M7X0A07Okp.jpg',
      'url': 'https://t.co/QCq1Yvwl1K',
      'display_url': 'pic.twitter.com/QCq1Yvwl1K',
      'expanded_url': 'https://twitter.com/POTUS/status/1464612047153414151/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3689,
   'favorite_count': 25539,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3689,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 26 19:41:04 +0000 2021',
  'id': 1464318303959236608,
  'id_str': '1464318303959236608',
  'full_text': 'RT @POTUS: The @WHO has identified a new COVID variant which is spreading through Southern Africa. As a precautionary measure until we have…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'WHO',
     'name': 'World Health Organization (WHO)',
     'id': 14499829,
     'id_str': '14499829',
     'indices': [15, 19]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Nov 26 19:38:21 +0000 2021',
   'id': 1464317623156580352,
   'id_str': '1464317623156580352',
   'full_text': 'The @WHO has identified a new COVID variant which is spreading through Southern Africa. As a precautionary measure until we have more information, I am ordering air travel restrictions from South Africa and seven other countries.',
   'truncated': False,
   'display_text_range': [0, 229],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'WHO',
      'name': 'World Health Organization (WHO)',
      'id': 14499829,
      'id_str': '14499829',
      'indices': [4, 8]}],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8195,
   'favorite_count': 46868,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8195,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 26 17:06:57 +0000 2021',
  'id': 1464279523122368512,
  'id_str': '1464279523122368512',
  'full_text': 'RT @POTUS: On Native American Heritage Day and every day, we honor the strong and enduring cultures and contributions of all Native America…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Nov 26 15:02:36 +0000 2021',
   'id': 1464248227444703250,
   'id_str': '1464248227444703250',
   'full_text': 'On Native American Heritage Day and every day, we honor the strong and enduring cultures and contributions of all Native Americans. We recommit ourselves to strengthening Tribal sovereignty, self determination, and upholding our Tribal trust and treaty responsibilities. https://t.co/2cy1vpatON',
   'truncated': False,
   'display_text_range': [0, 270],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1464248223980208133,
      'id_str': '1464248223980208133',
      'indices': [271, 294],
      'media_url': 'http://pbs.twimg.com/media/FFIOAHVWQAUXzba.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FFIOAHVWQAUXzba.jpg',
      'url': 'https://t.co/2cy1vpatON',
      'display_url': 'pic.twitter.com/2cy1vpatON',
      'expanded_url': 'https://twitter.com/POTUS/status/1464248227444703250/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1464248223980208133,
      'id_str': '1464248223980208133',
      'indices': [271, 294],
      'media_url': 'http://pbs.twimg.com/media/FFIOAHVWQAUXzba.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FFIOAHVWQAUXzba.jpg',
      'url': 'https://t.co/2cy1vpatON',
      'display_url': 'pic.twitter.com/2cy1vpatON',
      'expanded_url': 'https://twitter.com/POTUS/status/1464248227444703250/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4989,
   'favorite_count': 28891,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4989,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 25 20:37:01 +0000 2021',
  'id': 1463969998578368513,
  'id_str': '1463969998578368513',
  'full_text': 'Thanksgiving is a special time to reflect on what the year has brought, what lies ahead, and a time to be grateful that from darkness there is light, hope, and progress. \n\nFrom my family to yours, happy Thanksgiving.',
  'truncated': False,
  'display_text_range': [0, 216],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4091,
  'favorite_count': 40444,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 25 14:28:11 +0000 2021',
  'id': 1463877178148458499,
  'id_str': '1463877178148458499',
  'full_text': 'RT @POTUS: From the Biden family to yours – Happy Thanksgiving. https://t.co/r0mhQtQS69',
  'truncated': False,
  'display_text_range': [0, 87],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1463870245505052685,
     'id_str': '1463870245505052685',
     'indices': [64, 87],
     'media_url': 'http://pbs.twimg.com/media/FFC2Tf8WYAAmolu.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFC2Tf8WYAAmolu.jpg',
     'url': 'https://t.co/r0mhQtQS69',
     'display_url': 'pic.twitter.com/r0mhQtQS69',
     'expanded_url': 'https://twitter.com/POTUS/status/1463870328313155588/video/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 480, 'h': 270, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 480, 'h': 270, 'resize': 'fit'},
      'large': {'w': 480, 'h': 270, 'resize': 'fit'}},
     'source_status_id': 1463870328313155588,
     'source_status_id_str': '1463870328313155588',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1463870245505052685,
     'id_str': '1463870245505052685',
     'indices': [64, 87],
     'media_url': 'http://pbs.twimg.com/media/FFC2Tf8WYAAmolu.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FFC2Tf8WYAAmolu.jpg',
     'url': 'https://t.co/r0mhQtQS69',
     'display_url': 'pic.twitter.com/r0mhQtQS69',
     'expanded_url': 'https://twitter.com/POTUS/status/1463870328313155588/video/1',
     'type': 'video',
     'sizes': {'medium': {'w': 480, 'h': 270, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 480, 'h': 270, 'resize': 'fit'},
      'large': {'w': 480, 'h': 270, 'resize': 'fit'}},
     'source_status_id': 1463870328313155588,
     'source_status_id_str': '1463870328313155588',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [16, 9],
      'duration_millis': 113822,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1463870245505052685/pl/iVEbtqpTgRwGFHXd.m3u8?tag=14&container=fmp4'},
       {'bitrate': 288000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1463870245505052685/vid/480x270/Dx2laRfe5zOVZFwF.mp4?tag=14'},
       {'bitrate': 2176000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1463870245505052685/vid/1280x720/E4B_M_tywWDZJ_oT.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1463870245505052685/vid/640x360/p6kQ2SiX6M6LAwvu.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004745,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Nov 25 14:00:58 +0000 2021',
   'id': 1463870328313155588,
   'id_str': '1463870328313155588',
   'full_text': 'From the Biden family to yours – Happy Thanksgiving. https://t.co/r0mhQtQS69',
   'truncated': False,
   'display_text_range': [0, 52],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1463870245505052685,
      'id_str': '1463870245505052685',
      'indices': [53, 76],
      'media_url': 'http://pbs.twimg.com/media/FFC2Tf8WYAAmolu.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FFC2Tf8WYAAmolu.jpg',
      'url': 'https://t.co/r0mhQtQS69',
      'display_url': 'pic.twitter.com/r0mhQtQS69',
      'expanded_url': 'https://twitter.com/POTUS/status/1463870328313155588/video/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 480, 'h': 270, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 480, 'h': 270, 'resize': 'fit'},
       'large': {'w': 480, 'h': 270, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1463870245505052685,
      'id_str': '1463870245505052685',
      'indices': [53, 76],
      'media_url': 'http://pbs.twimg.com/media/FFC2Tf8WYAAmolu.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FFC2Tf8WYAAmolu.jpg',
      'url': 'https://t.co/r0mhQtQS69',
      'display_url': 'pic.twitter.com/r0mhQtQS69',
      'expanded_url': 'https://twitter.com/POTUS/status/1463870328313155588/video/1',
      'type': 'video',
      'sizes': {'medium': {'w': 480, 'h': 270, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 480, 'h': 270, 'resize': 'fit'},
       'large': {'w': 480, 'h': 270, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 113822,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1463870245505052685/pl/iVEbtqpTgRwGFHXd.m3u8?tag=14&container=fmp4'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1463870245505052685/vid/480x270/Dx2laRfe5zOVZFwF.mp4?tag=14'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1463870245505052685/vid/1280x720/E4B_M_tywWDZJ_oT.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1463870245505052685/vid/640x360/p6kQ2SiX6M6LAwvu.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10402,
   'favorite_count': 90598,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10402,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 24 21:27:01 +0000 2021',
  'id': 1463620191326195712,
  'id_str': '1463620191326195712',
  'full_text': "We've made progress over the last ten months: unemployment is down to 4.6%, wages are rising, disposable income is up, and millions of Americans will be reuniting with their loved ones for Thanksgiving. We're grateful that families can gather safely thanks to the vaccine.",
  'truncated': False,
  'display_text_range': [0, 272],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3910,
  'favorite_count': 26640,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 24 20:43:28 +0000 2021',
  'id': 1463609234332000260,
  'id_str': '1463609234332000260',
  'full_text': 'RT @POTUS: Nothing can bring Mr. Arbery back to his family and to his community, but the verdict ensures that those who committed this horr…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Nov 24 20:42:12 +0000 2021',
   'id': 1463608913769734157,
   'id_str': '1463608913769734157',
   'full_text': 'Nothing can bring Mr. Arbery back to his family and to his community, but the verdict ensures that those who committed this horrible crime will be punished. https://t.co/WK7vNZlZfj',
   'truncated': False,
   'display_text_range': [0, 180],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/WK7vNZlZfj',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/statements-releases/2021/11/24/statement-from-president-joe-biden/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [157, 180]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2734,
   'favorite_count': 18666,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2734,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 24 18:30:07 +0000 2021',
  'id': 1463575674933989377,
  'id_str': '1463575674933989377',
  'full_text': 'We’ve launched a major effort to reduce the price of gas at your corner gas station.\nhttps://t.co/pm9ACpnCwX',
  'truncated': False,
  'display_text_range': [0, 108],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1463535388413333514,
     'id_str': '1463535388413333514',
     'indices': [85, 108],
     'media_url': 'http://pbs.twimg.com/media/FE-FubsXMAANqtt.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FE-FubsXMAANqtt.jpg',
     'url': 'https://t.co/pm9ACpnCwX',
     'display_url': 'pic.twitter.com/pm9ACpnCwX',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1463535442251460619/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1463535442251460619,
     'source_status_id_str': '1463535442251460619',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1463535388413333514,
     'id_str': '1463535388413333514',
     'indices': [85, 108],
     'media_url': 'http://pbs.twimg.com/media/FE-FubsXMAANqtt.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FE-FubsXMAANqtt.jpg',
     'url': 'https://t.co/pm9ACpnCwX',
     'display_url': 'pic.twitter.com/pm9ACpnCwX',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1463535442251460619/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1463535442251460619,
     'source_status_id_str': '1463535442251460619',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 39873,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1463535388413333514/vid/540x540/9zwrq-wdyze8WqGq.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1463535388413333514/pl/PfCljzw-vOX-A0Nu.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1463535388413333514/vid/720x720/32-KiifobUChvwT4.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1463535388413333514/vid/320x320/wvhaUFjf5ppc3f-F.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1223,
  'favorite_count': 8464,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 23 23:59:53 +0000 2021',
  'id': 1463296273562357765,
  'id_str': '1463296273562357765',
  'full_text': 'RT @POTUS: Jill and I know firsthand what it means to be a military family, and we’re so grateful for everything they do. It was an honor t…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Nov 23 23:59:12 +0000 2021',
   'id': 1463296104422940672,
   'id_str': '1463296104422940672',
   'full_text': 'Jill and I know firsthand what it means to be a military family, and we’re so grateful for everything they do. It was an honor to celebrate an early Thanksgiving with them last night at Fort Bragg. https://t.co/XQMejI6Rbu',
   'truncated': False,
   'display_text_range': [0, 197],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1463296030393393154,
      'id_str': '1463296030393393154',
      'indices': [198, 221],
      'media_url': 'http://pbs.twimg.com/media/FE6sDD0XEAAyYX3.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FE6sDD0XEAAyYX3.jpg',
      'url': 'https://t.co/XQMejI6Rbu',
      'display_url': 'pic.twitter.com/XQMejI6Rbu',
      'expanded_url': 'https://twitter.com/POTUS/status/1463296104422940672/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1463296030393393154,
      'id_str': '1463296030393393154',
      'indices': [198, 221],
      'media_url': 'http://pbs.twimg.com/media/FE6sDD0XEAAyYX3.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FE6sDD0XEAAyYX3.jpg',
      'url': 'https://t.co/XQMejI6Rbu',
      'display_url': 'pic.twitter.com/XQMejI6Rbu',
      'expanded_url': 'https://twitter.com/POTUS/status/1463296104422940672/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 70653,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1463296030393393154/vid/540x540/bO-VZa3agVbEkFvn.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1463296030393393154/vid/720x720/j7IKxr8ZIKJ5rTPQ.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1463296030393393154/vid/320x320/N0zN5-DvIe4smh9a.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1463296030393393154/pl/QLhXXHgFExv8d7ie.m3u8?tag=14&container=fmp4'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2406,
   'favorite_count': 15918,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2406,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 23 23:13:01 +0000 2021',
  'id': 1463284480358105092,
  'id_str': '1463284480358105092',
  'full_text': 'Our Bipartisan Infrastructure Law will deliver access to clean water and affordable high-speed internet to millions of families across the country. \n\nWe’re going to create good-paying jobs while rebuilding our infrastructure and investing in our future.',
  'truncated': False,
  'display_text_range': [0, 253],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1806,
  'favorite_count': 10577,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 23 20:14:02 +0000 2021',
  'id': 1463239436968382470,
  'id_str': '1463239436968382470',
  'full_text': 'The Bipartisan Infrastructure Law rewards companies for paying workers a decent wage, for buying American, and for sourcing their products right here in America—not abroad.',
  'truncated': False,
  'display_text_range': [0, 172],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2254,
  'favorite_count': 14789,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 23 01:50:00 +0000 2021',
  'id': 1462961600999133185,
  'id_str': '1462961600999133185',
  'full_text': 'Nearly 2 million women in our country have been locked out of the workforce because they have to care for a child or an elderly relative at home.\n\nMy Build Back Better Act will make caregiving accessible and affordable and help them get back to work.',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4296,
  'favorite_count': 30037,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 22 22:05:11 +0000 2021',
  'id': 1462905022597976069,
  'id_str': '1462905022597976069',
  'full_text': 'No one should have to pay $1,000 a month for insulin. That’s why my Build Back Better Act will lower costs for prescription drugs and ensure that no one pays more than $35 a month for their insulin. https://t.co/buhJTYop7S',
  'truncated': False,
  'display_text_range': [0, 198],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1462904979434450948,
     'id_str': '1462904979434450948',
     'indices': [199, 222],
     'media_url': 'http://pbs.twimg.com/media/FE1IXOiWYAAn8a2.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FE1IXOiWYAAn8a2.jpg',
     'url': 'https://t.co/buhJTYop7S',
     'display_url': 'pic.twitter.com/buhJTYop7S',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1462905022597976069/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1462904979434450948,
     'id_str': '1462904979434450948',
     'indices': [199, 222],
     'media_url': 'http://pbs.twimg.com/media/FE1IXOiWYAAn8a2.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FE1IXOiWYAAn8a2.jpg',
     'url': 'https://t.co/buhJTYop7S',
     'display_url': 'pic.twitter.com/buhJTYop7S',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1462905022597976069/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 17484,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1462904979434450948/vid/320x320/mIPuR8xtlMfaP57Y.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1462904979434450948/vid/540x540/eHAmm6rV538nYY8W.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1462904979434450948/vid/720x720/jJQiuIf5PjyGYBoy.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1462904979434450948/pl/4UjVhRbg0DwNHF5I.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'My Build Back Better Act will lower costs for prescription drugs',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2917,
  'favorite_count': 17949,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 22 18:00:22 +0000 2021',
  'id': 1462843414156824576,
  'id_str': '1462843414156824576',
  'full_text': 'The Bipartisan Infrastructure Law will ensure no parent will have to sit in a fast food parking lot just so their child can access the internet to do their homework.',
  'truncated': False,
  'display_text_range': [0, 165],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3132,
  'favorite_count': 21089,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 22 17:51:10 +0000 2021',
  'id': 1462841097764356097,
  'id_str': '1462841097764356097',
  'full_text': 'RT @POTUS: This afternoon, the First Lady and I are heading to Fort Bragg for a Friendsgiving dinner. Our troops and their families give so…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Nov 22 17:36:08 +0000 2021',
   'id': 1462837313336086528,
   'id_str': '1462837313336086528',
   'full_text': 'This afternoon, the First Lady and I are heading to Fort Bragg for a Friendsgiving dinner. Our troops and their families give so much to this country — and we’re thankful for their service each and every day.',
   'truncated': False,
   'display_text_range': [0, 208],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3970,
   'favorite_count': 34265,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3970,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 21 23:37:05 +0000 2021',
  'id': 1462565762204381188,
  'id_str': '1462565762204381188',
  'full_text': 'Not one, not two, not sixteen—seventeen Nobel Prize-winning economists agree that my Build Back Better Act will ease longer-term inflationary pressures and grow our economy. https://t.co/X6mpntckXb',
  'truncated': False,
  'display_text_range': [0, 173],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1462565742809858048,
     'id_str': '1462565742809858048',
     'indices': [174, 197],
     'media_url': 'http://pbs.twimg.com/media/FEwTzsBWUAAGi5r.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FEwTzsBWUAAGi5r.jpg',
     'url': 'https://t.co/X6mpntckXb',
     'display_url': 'pic.twitter.com/X6mpntckXb',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1462565762204381188/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1462565742809858048,
     'id_str': '1462565742809858048',
     'indices': [174, 197],
     'media_url': 'http://pbs.twimg.com/media/FEwTzsBWUAAGi5r.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FEwTzsBWUAAGi5r.jpg',
     'url': 'https://t.co/X6mpntckXb',
     'display_url': 'pic.twitter.com/X6mpntckXb',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1462565762204381188/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 8000,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1462565742809858048/vid/720x720/Zi8mI-t1SoDs14de.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1462565742809858048/vid/540x540/LmBejnajGS-AJD-w.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1462565742809858048/pl/M3fcZjH6lO-0DG0t.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1462565742809858048/vid/320x320/GBgWDEHzyFQeAcMk.mp4?tag=14'}]},
     'additional_media_info': {'title': '17 Nobel Prize-Winning Economists',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3064,
  'favorite_count': 14567,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 21 16:50:01 +0000 2021',
  'id': 1462463318606688261,
  'id_str': '1462463318606688261',
  'full_text': 'The Bipartisan Infrastructure Law builds back our bridges, water systems, power lines, and electric grid better and stronger. \n\nBecause of it, fewer Americans will be flooded out of their homes or lose power for days and weeks at a time when a storm hits.',
  'truncated': False,
  'display_text_range': [0, 255],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2176,
  'favorite_count': 14377,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 21 14:48:03 +0000 2021',
  'id': 1462432624782286860,
  'id_str': '1462432624782286860',
  'full_text': 'Infrastructure Week has long been talked about in Washington.\n\nFolks, it’s finally here. \nhttps://t.co/BKhjPsFjmf',
  'truncated': False,
  'display_text_range': [0, 113],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1458627794083233792,
     'id_str': '1458627794083233792',
     'indices': [90, 113],
     'media_url': 'http://pbs.twimg.com/media/FD4WSIvWYAAnd02.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FD4WSIvWYAAnd02.jpg',
     'url': 'https://t.co/BKhjPsFjmf',
     'display_url': 'pic.twitter.com/BKhjPsFjmf',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1458627836915376130/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1458627836915376130,
     'source_status_id_str': '1458627836915376130',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1458627794083233792,
     'id_str': '1458627794083233792',
     'indices': [90, 113],
     'media_url': 'http://pbs.twimg.com/media/FD4WSIvWYAAnd02.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FD4WSIvWYAAnd02.jpg',
     'url': 'https://t.co/BKhjPsFjmf',
     'display_url': 'pic.twitter.com/BKhjPsFjmf',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1458627836915376130/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1458627836915376130,
     'source_status_id_str': '1458627836915376130',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 10443,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458627794083233792/vid/320x320/aLthPZCtY2OfYwn2.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1458627794083233792/pl/fyYWgqs4QKAXqSfW.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458627794083233792/vid/540x540/KG9ABVZ6etRxKwpC.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458627794083233792/vid/720x720/rstrjSAXsm-ighj4.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Infrastructure week is here',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1625,
  'favorite_count': 11391,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 20 21:04:00 +0000 2021',
  'id': 1462164850424090627,
  'id_str': '1462164850424090627',
  'full_text': 'Studies have shown that children who go to pre-K are more likely to stay in school. \n\nThe Build Back Better Act establishes universal pre-K, ensuring every 3- and 4-year-old in America has access to high-quality early education, no matter their background.',
  'truncated': False,
  'display_text_range': [0, 256],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3819,
  'favorite_count': 26849,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 20 18:42:00 +0000 2021',
  'id': 1462129114664558593,
  'id_str': '1462129114664558593',
  'full_text': 'My Bipartisan Infrastructure Law is a once-in-a-generation investment that will create good-paying jobs modernizing our infrastructure.\nhttps://t.co/mYq7Bm0q4f',
  'truncated': False,
  'display_text_range': [0, 159],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1458058040905699331,
     'id_str': '1458058040905699331',
     'indices': [136, 159],
     'media_url': 'http://pbs.twimg.com/media/FDwQGkGXoAYjidb.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDwQGkGXoAYjidb.jpg',
     'url': 'https://t.co/mYq7Bm0q4f',
     'display_url': 'pic.twitter.com/mYq7Bm0q4f',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1458058089610031109/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1458058089610031109,
     'source_status_id_str': '1458058089610031109',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1458058040905699331,
     'id_str': '1458058040905699331',
     'indices': [136, 159],
     'media_url': 'http://pbs.twimg.com/media/FDwQGkGXoAYjidb.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDwQGkGXoAYjidb.jpg',
     'url': 'https://t.co/mYq7Bm0q4f',
     'display_url': 'pic.twitter.com/mYq7Bm0q4f',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1458058089610031109/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1458058089610031109,
     'source_status_id_str': '1458058089610031109',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 15140,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458058040905699331/vid/320x320/5VbzqREgPIOe8ICH.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458058040905699331/vid/540x540/BsSWpVtr7owLDwLb.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458058040905699331/vid/720x720/Xmg4zoPTd4vjFGyS.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1458058040905699331/pl/rk5yP36jBxfgi6qu.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Democrats Deliver: The Bipartisan Infrastructure Deal',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1368,
  'favorite_count': 7706,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 20 16:35:00 +0000 2021',
  'id': 1462097154583969793,
  'id_str': '1462097154583969793',
  'full_text': 'For too long, the economy has worked great for those at the top, while working families get squeezed. The Build Back Better Act will build an economy that works for everyone.\n\nWith its passage in the House, we’re one step closer to getting this done.',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2799,
  'favorite_count': 19241,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 19 22:16:52 +0000 2021',
  'id': 1461820799199981578,
  'id_str': '1461820799199981578',
  'full_text': 'The Build Back Better Act will lower costs, create jobs, and cut taxes, while tackling the climate crisis and growing the economy from the bottom up and middle out.\n\nWith its passage in the House, we’re one step closer to making a historic investment rebuilding the middle class.',
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2876,
  'favorite_count': 18242,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 19 01:00:06 +0000 2021',
  'id': 1461499492184821763,
  'id_str': '1461499492184821763',
  'full_text': 'The Bipartisan Infrastructure Law is proof that despite the cynics, Democrats and Republicans can come together and deliver real results.',
  'truncated': False,
  'display_text_range': [0, 137],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2261,
  'favorite_count': 18319,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 18 19:31:01 +0000 2021',
  'id': 1461416672154296329,
  'id_str': '1461416672154296329',
  'full_text': 'Two of the leading rating agencies on Wall Street said yesterday that the Build Back Better Act will not add inflationary pressures on the economy. \n\nInstead, it will create jobs and will help take the edge off inflation.',
  'truncated': False,
  'display_text_range': [0, 221],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3826,
  'favorite_count': 18018,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 18 17:43:00 +0000 2021',
  'id': 1461389491277643779,
  'id_str': '1461389491277643779',
  'full_text': 'Our economy is in the midst of a historic recovery as we build a path out of the pandemic. But far too many Americans are being left out. \n\nThe Bipartisan Infrastructure Law and Build Back Better Act will help lower costs and build an economy that works for everyone.',
  'truncated': False,
  'display_text_range': [0, 267],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1521,
  'favorite_count': 9328,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 18 16:49:19 +0000 2021',
  'id': 1461375981617299470,
  'id_str': '1461375981617299470',
  'full_text': 'RT @POTUS: New unemployment claims are down seven weeks in a row – and unemployment claims are the lowest since the pandemic began.\n \nThat’…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Nov 18 16:48:18 +0000 2021',
   'id': 1461375723864829960,
   'id_str': '1461375723864829960',
   'full_text': 'New unemployment claims are down seven weeks in a row – and unemployment claims are the lowest since the pandemic began.\n \nThat’s progress. https://t.co/avxD0t2krz',
   'truncated': False,
   'display_text_range': [0, 139],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1461375718298902528,
      'id_str': '1461375718298902528',
      'indices': [140, 163],
      'media_url': 'http://pbs.twimg.com/media/FEfZeRyWYAA_V59.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FEfZeRyWYAA_V59.jpg',
      'url': 'https://t.co/avxD0t2krz',
      'display_url': 'pic.twitter.com/avxD0t2krz',
      'expanded_url': 'https://twitter.com/POTUS/status/1461375723864829960/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1461375718298902528,
      'id_str': '1461375718298902528',
      'indices': [140, 163],
      'media_url': 'http://pbs.twimg.com/media/FEfZeRyWYAA_V59.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FEfZeRyWYAA_V59.jpg',
      'url': 'https://t.co/avxD0t2krz',
      'display_url': 'pic.twitter.com/avxD0t2krz',
      'expanded_url': 'https://twitter.com/POTUS/status/1461375723864829960/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2596,
   'favorite_count': 12293,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2596,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 18 14:46:09 +0000 2021',
  'id': 1461344984787914768,
  'id_str': '1461344984787914768',
  'full_text': 'It was good to be back in Detroit. https://t.co/DXKpvHRteJ',
  'truncated': False,
  'display_text_range': [0, 34],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1461344508717649921,
     'id_str': '1461344508717649921',
     'indices': [35, 58],
     'media_url': 'http://pbs.twimg.com/media/FEe9QJBXEAQB2XJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FEe9QJBXEAQB2XJ.jpg',
     'url': 'https://t.co/DXKpvHRteJ',
     'display_url': 'pic.twitter.com/DXKpvHRteJ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1461344984787914768/video/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 540, 'h': 540, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 540, 'h': 540, 'resize': 'fit'},
      'small': {'w': 540, 'h': 540, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1461344508717649921,
     'id_str': '1461344508717649921',
     'indices': [35, 58],
     'media_url': 'http://pbs.twimg.com/media/FEe9QJBXEAQB2XJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FEe9QJBXEAQB2XJ.jpg',
     'url': 'https://t.co/DXKpvHRteJ',
     'display_url': 'pic.twitter.com/DXKpvHRteJ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1461344984787914768/video/1',
     'type': 'video',
     'sizes': {'medium': {'w': 540, 'h': 540, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 540, 'h': 540, 'resize': 'fit'},
      'small': {'w': 540, 'h': 540, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 11277,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1461344508717649921/vid/720x720/IXLS3EqECkljC6k9.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1461344508717649921/pl/Uyf_xIeT4ffA6D9k.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1461344508717649921/vid/320x320/8HH3PeVTsPzrbSpm.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1461344508717649921/vid/540x540/cJdhT1Mp0CExGD6E.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1202,
  'favorite_count': 9813,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 18 00:29:01 +0000 2021',
  'id': 1461129281350864899,
  'id_str': '1461129281350864899',
  'full_text': 'Together, the Bipartisan Infrastructure Law and Build Back Better Act will create millions of jobs, lower costs for working families, and meet the moment on climate change. \n\nThese are transformative investments in the American people and our future.',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1594,
  'favorite_count': 9551,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 17 21:29:00 +0000 2021',
  'id': 1461083978740477955,
  'id_str': '1461083978740477955',
  'full_text': 'Tribal lands have been chronically underfunded for generations. I’m proud to say that the Bipartisan Infrastructure Law will be the single largest investment in Tribal infrastructure ever—and we won’t stop there.',
  'truncated': False,
  'display_text_range': [0, 212],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2779,
  'favorite_count': 18717,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 17 14:49:01 +0000 2021',
  'id': 1460983316451139585,
  'id_str': '1460983316451139585',
  'full_text': 'Because of the Bipartisan Infrastructure Law, next year will be the first year in 20 years that American infrastructure investments will grow faster than China. \n\nHistorians will look back at this time as the moment America began to win the competition of the 21st century.',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2480,
  'favorite_count': 15467,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 16 23:54:01 +0000 2021',
  'id': 1460758083391655944,
  'id_str': '1460758083391655944',
  'full_text': "Throughout our history, we've emerged from crises by investing in ourselves.\n\nAnd as we emerge from the COVID-19 pandemic, we'll rebuild the economy from the bottom up and middle out. That’s what the Bipartisan Infrastructure Law and the Build Back Better Act will do.",
  'truncated': False,
  'display_text_range': [0, 268],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2161,
  'favorite_count': 14047,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 16 21:29:00 +0000 2021',
  'id': 1460721590644137996,
  'id_str': '1460721590644137996',
  'full_text': 'The Bipartisan Infrastructure Law makes the most significant investment in public transit in the history of our nation. \n \nYou’re going to go places faster, safer, and with a lot less pollution in the air.',
  'truncated': False,
  'display_text_range': [0, 205],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1989,
  'favorite_count': 12377,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 16 17:35:18 +0000 2021',
  'id': 1460662775735328771,
  'id_str': '1460662775735328771',
  'full_text': 'I announced five new initiatives that will help protect the dignity and sovereignty of Tribal Nations. https://t.co/72ga28TpqZ',
  'truncated': False,
  'display_text_range': [0, 102],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1460662706348998661,
     'id_str': '1460662706348998661',
     'indices': [103, 126],
     'media_url': 'http://pbs.twimg.com/media/FEVRDQUWQAMp_uJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FEVRDQUWQAMp_uJ.jpg',
     'url': 'https://t.co/72ga28TpqZ',
     'display_url': 'pic.twitter.com/72ga28TpqZ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1460662775735328771/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1460662706348998661,
     'id_str': '1460662706348998661',
     'indices': [103, 126],
     'media_url': 'http://pbs.twimg.com/media/FEVRDQUWQAMp_uJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FEVRDQUWQAMp_uJ.jpg',
     'url': 'https://t.co/72ga28TpqZ',
     'display_url': 'pic.twitter.com/72ga28TpqZ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1460662775735328771/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 60727,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1460662706348998661/vid/540x540/6xSkGZ5k3Oz3pEUP.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1460662706348998661/vid/320x320/aqd6QOeoKc0hyLh9.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1460662706348998661/vid/720x720/fj0TbDAP2cJaVaLu.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1460662706348998661/pl/PVXWpNLQeXRsdz3X.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Joe Biden on Tribal Nations Initiatives',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1597,
  'favorite_count': 8956,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 16 14:40:00 +0000 2021',
  'id': 1460618663145488385,
  'id_str': '1460618663145488385',
  'full_text': 'The Bipartisan Infrastructure Deal will modernize our ports, our airports, and our freight rail to make it easier for companies to get goods to market. It will reduce the supply chain bottlenecks we’re currently experiencing and lower costs for you and your family.',
  'truncated': False,
  'display_text_range': [0, 265],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2850,
  'favorite_count': 18912,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 16 03:15:00 +0000 2021',
  'id': 1460446277406240771,
  'id_str': '1460446277406240771',
  'full_text': "The Bipartisan Infrastructure Deal makes the most significant investment in roads and bridges in the past 70 years, the most significant investment in passenger rail in the past 50 years, and the most significant investment in public transit in our nation's history. It’s a BFD.",
  'truncated': False,
  'display_text_range': [0, 278],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2961,
  'favorite_count': 17533,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 16 02:07:00 +0000 2021',
  'id': 1460429162594852865,
  'id_str': '1460429162594852865',
  'full_text': 'My message to the American people is this: America is moving again. And your life is going to change for the better thanks to the Bipartisan Infrastructure Deal.',
  'truncated': False,
  'display_text_range': [0, 161],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4709,
  'favorite_count': 37895,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 16 01:16:00 +0000 2021',
  'id': 1460416326904606722,
  'id_str': '1460416326904606722',
  'full_text': 'From the moment I entered the White House, I promised that I would be a president for all Americans and make sure our democracy delivers for all of you. Signing the Bipartisan Infrastructure Deal is a monumental step forward toward building back better as a nation. https://t.co/fe0K5g5v3k',
  'truncated': False,
  'display_text_range': [0, 265],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1460395947847004167,
     'id_str': '1460395947847004167',
     'indices': [266, 289],
     'media_url': 'http://pbs.twimg.com/media/FERea_UX0AMfTGj.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FERea_UX0AMfTGj.jpg',
     'url': 'https://t.co/fe0K5g5v3k',
     'display_url': 'pic.twitter.com/fe0K5g5v3k',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1460416326904606722/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1460395947847004167,
     'id_str': '1460395947847004167',
     'indices': [266, 289],
     'media_url': 'http://pbs.twimg.com/media/FERea_UX0AMfTGj.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FERea_UX0AMfTGj.jpg',
     'url': 'https://t.co/fe0K5g5v3k',
     'display_url': 'pic.twitter.com/fe0K5g5v3k',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1460416326904606722/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 22722,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1460395947847004167/pl/t9Yey6lblmcZM5jX.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1460395947847004167/vid/320x320/cSPRf2wfxtCfVu9Q.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1460395947847004167/vid/540x540/E3PB8tUKEA4qdHim.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1460395947847004167/vid/720x720/j2GQ5jeehtvaBFVm.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Delivering results for the American people',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1302,
  'favorite_count': 7855,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 15 23:40:00 +0000 2021',
  'id': 1460392169387212804,
  'id_str': '1460392169387212804',
  'full_text': 'The Bipartisan Infrastructure Deal makes historic investments in our infrastructure to rebuild our roads and bridges, deliver clean water and high-speed internet, modernize our electrical grid, and help transition to a clean energy economy. \n\nIt is now law.',
  'truncated': False,
  'display_text_range': [0, 257],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2232,
  'favorite_count': 13975,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 15 21:32:27 +0000 2021',
  'id': 1460360071901233156,
  'id_str': '1460360071901233156',
  'full_text': "I just signed the Bipartisan Infrastructure Deal into law alongside members of Congress from both parties. \n\nThis is a historic investment in our future that will create good-paying jobs and rebuild our nation's infrastructure. It's an enormous win for the American people.",
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3608,
  'favorite_count': 25605,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 15 16:40:01 +0000 2021',
  'id': 1460286477775089668,
  'id_str': '1460286477775089668',
  'full_text': 'Seventeen Nobel Prize winning economists said that Build Back Better will ease longer-term inflationary pressures and lower costs for American families.\n\nWe can get this done.',
  'truncated': False,
  'display_text_range': [0, 175],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4604,
  'favorite_count': 27118,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 15 16:05:32 +0000 2021',
  'id': 1460277800557027330,
  'id_str': '1460277800557027330',
  'full_text': 'RT @POTUS: This morning, @FLOTUS and I are participating in a Tribal Nations Summit here at the White House. I look forward to announcing s…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'FLOTUS',
     'name': 'Jill Biden',
     'id': 1349154719386775552,
     'id_str': '1349154719386775552',
     'indices': [25, 32]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Nov 15 16:00:25 +0000 2021',
   'id': 1460276508950470664,
   'id_str': '1460276508950470664',
   'full_text': 'This morning, @FLOTUS and I are participating in a Tribal Nations Summit here at the White House. I look forward to announcing steps to improve public safety and justice for Native Americans, protect Tribal lands, treaty rights, and sacred places.',
   'truncated': False,
   'display_text_range': [0, 247],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'FLOTUS',
      'name': 'Jill Biden',
      'id': 1349154719386775552,
      'id_str': '1349154719386775552',
      'indices': [14, 21]}],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2702,
   'favorite_count': 18598,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2702,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 15 14:40:00 +0000 2021',
  'id': 1460256274386464776,
  'id_str': '1460256274386464776',
  'full_text': 'American families across the country are facing rising costs on everything from gas to groceries. \n\nThe Build Back Better Act will lower costs for health care, child care, and elder care—and cut taxes for the middle class. Let’s pass it.',
  'truncated': False,
  'display_text_range': [0, 237],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2623,
  'favorite_count': 15913,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 15 00:00:04 +0000 2021',
  'id': 1460034831597899779,
  'id_str': '1460034831597899779',
  'full_text': 'Congress can help ease inflationary pressures and lower costs for working families. \n\nLet’s pass the Build Back Better Act.',
  'truncated': False,
  'display_text_range': [0, 123],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3965,
  'favorite_count': 26365,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 14 20:30:01 +0000 2021',
  'id': 1459981971946356741,
  'id_str': '1459981971946356741',
  'full_text': 'COVID-19 has disrupted supply chains around the world. Now, even in the midst of a historic economic recovery, Americans are facing prices that are just too high. \n\nWe must pass the Build Back Better Act to lower costs for working families and help get people back to work.',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3361,
  'favorite_count': 18890,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 14 17:37:01 +0000 2021',
  'id': 1459938433359613964,
  'id_str': '1459938433359613964',
  'full_text': 'The Build Back Better Framework will strengthen the middle class by bringing down costs on everyday essentials and enacting tax cuts for the middle class—and we’ll get it done by asking the wealthiest to pay their fair share.',
  'truncated': False,
  'display_text_range': [0, 225],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2876,
  'favorite_count': 17351,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 13 23:53:00 +0000 2021',
  'id': 1459670665255137280,
  'id_str': '1459670665255137280',
  'full_text': 'The Build Back Better Framework will be the largest effort to combat climate change in American history—and through this effort, we’ll grow industries here in the United States; create good-paying union jobs; and combat environmental injustice.',
  'truncated': False,
  'display_text_range': [0, 244],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2377,
  'favorite_count': 15047,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 13 21:05:02 +0000 2021',
  'id': 1459628393075560463,
  'id_str': '1459628393075560463',
  'full_text': 'Our economy has created 5.6 million jobs since January and unemployment is below 5%. \n\nBut Americans across the country are facing prices that are just too high. We must pass the Build Back Better Act to lower costs for working families and help get people back to work.',
  'truncated': False,
  'display_text_range': [0, 270],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3041,
  'favorite_count': 19058,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 13 16:35:00 +0000 2021',
  'id': 1459560440305000450,
  'id_str': '1459560440305000450',
  'full_text': 'Lowering costs for American families is a top priority. \n\nThe Bipartisan Infrastructure Deal will strengthen the supply chain and reduce bottlenecks, and Build Back Better will ease inflationary pressures and lower costs for working families.',
  'truncated': False,
  'display_text_range': [0, 242],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2208,
  'favorite_count': 14095,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 13 01:46:00 +0000 2021',
  'id': 1459336713965293581,
  'id_str': '1459336713965293581',
  'full_text': 'Despite our historic recovery, families are still feeling a strain. The Bipartisan Infrastructure Deal will help:\n\n- Bring down costs\n- Reduce bottlenecks\n- Get goods to market faster\n\nAnd Build Back Better will help ease inflationary pressures and lower costs for families.',
  'truncated': False,
  'display_text_range': [0, 274],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2431,
  'favorite_count': 14174,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 12 21:46:00 +0000 2021',
  'id': 1459276317057298441,
  'id_str': '1459276317057298441',
  'full_text': "The Bipartisan Infrastructure Deal will lower costs and reduce supply chain bottlenecks.\n\nNow, let's pass Build Back Better—which 17 Nobel Prize winning economists say will ease longer-term inflationary pressures and lower costs for American families.",
  'truncated': False,
  'display_text_range': [0, 251],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1920,
  'favorite_count': 10328,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 12 20:39:01 +0000 2021',
  'id': 1459259457603518467,
  'id_str': '1459259457603518467',
  'full_text': 'The Build Back Better Framework will be a transformative investment in our future. Together, we can grow the economy from the bottom up and the middle out so that everyone gets ahead.',
  'truncated': False,
  'display_text_range': [0, 183],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1748,
  'favorite_count': 11721,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 11 16:09:39 +0000 2021',
  'id': 1458829282747330574,
  'id_str': '1458829282747330574',
  'full_text': 'RT @POTUS: Tune in as I deliver remarks at the National Veterans Day Observance at the Memorial Amphitheater. https://t.co/9OvletPbjI',
  'truncated': False,
  'display_text_range': [0, 133],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/9OvletPbjI',
     'expanded_url': 'https://twitter.com/i/broadcasts/1ZkJzbBvweoJv',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [110, 133]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Nov 11 16:09:04 +0000 2021',
   'id': 1458829137272053764,
   'id_str': '1458829137272053764',
   'full_text': 'Tune in as I deliver remarks at the National Veterans Day Observance at the Memorial Amphitheater. https://t.co/9OvletPbjI',
   'truncated': False,
   'display_text_range': [0, 122],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/9OvletPbjI',
      'expanded_url': 'https://twitter.com/i/broadcasts/1ZkJzbBvweoJv',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [99, 122]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1552,
   'favorite_count': 9323,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1552,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 11 16:08:18 +0000 2021',
  'id': 1458828944401121290,
  'id_str': '1458828944401121290',
  'full_text': 'Less than 1% of Americans currently serve in our military and while we can never fully repay the debt we owe these heroes, it is our sacred obligation to properly care for and support them. \n\nThis Veterans Day, we honor all those who have answered the call to serve. https://t.co/DBAMdlvUJK',
  'truncated': False,
  'display_text_range': [0, 266],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1458828887991930884,
     'id_str': '1458828887991930884',
     'indices': [267, 290],
     'media_url': 'http://pbs.twimg.com/media/FD7NMOMX0Ac4vaz.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FD7NMOMX0Ac4vaz.jpg',
     'url': 'https://t.co/DBAMdlvUJK',
     'display_url': 'pic.twitter.com/DBAMdlvUJK',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1458828944401121290/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1458828887991930884,
     'id_str': '1458828887991930884',
     'indices': [267, 290],
     'media_url': 'http://pbs.twimg.com/media/FD7NMOMX0Ac4vaz.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FD7NMOMX0Ac4vaz.jpg',
     'url': 'https://t.co/DBAMdlvUJK',
     'display_url': 'pic.twitter.com/DBAMdlvUJK',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1458828944401121290/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 14814,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458828887991930884/vid/320x320/bvQymP_fqsPp1bUZ.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458828887991930884/vid/720x720/T0RPqnNH4JSS_kGE.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1458828887991930884/vid/540x540/IQb8YZ9zpcpPoi5w.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1458828887991930884/pl/KpE1ePsYmmllgABe.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Veterans Day',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1635,
  'favorite_count': 9546,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 11 01:27:00 +0000 2021',
  'id': 1458607156840828928,
  'id_str': '1458607156840828928',
  'full_text': 'With the Build Back Better Framework, we will make health care more affordable for millions of Americans.',
  'truncated': False,
  'display_text_range': [0, 105],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2518,
  'favorite_count': 20037,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 10 23:01:01 +0000 2021',
  'id': 1458570417468227591,
  'id_str': '1458570417468227591',
  'full_text': 'Under the Build Back Better Framework, we will create millions of good-paying jobs, spur long-term growth, lower costs for working families, and set America on course to meet our greenhouse gas emissions targets.',
  'truncated': False,
  'display_text_range': [0, 212],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2001,
  'favorite_count': 12759,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 10 16:52:02 +0000 2021',
  'id': 1458477563207208966,
  'id_str': '1458477563207208966',
  'full_text': 'The Bipartisan Infrastructure Deal is a historic investment in our nation’s public infrastructure. \n\nWe will rebuild our roads and bridges, provide clean drinking water, expand broadband access, invest in clean energy, and create good-paying jobs across the country.',
  'truncated': False,
  'display_text_range': [0, 266],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1827,
  'favorite_count': 11140,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 10 15:53:33 +0000 2021',
  'id': 1458462845402816518,
  'id_str': '1458462845402816518',
  'full_text': 'RT @POTUS: Today, we learned that we have had six consecutive weeks of decline in new unemployment claims. Unemployment claims are down 70%…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Nov 10 15:52:37 +0000 2021',
   'id': 1458462609771057152,
   'id_str': '1458462609771057152',
   'full_text': 'Today, we learned that we have had six consecutive weeks of decline in new unemployment claims. Unemployment claims are down 70% since I took office and falling at the fastest rate since the 1950s.\n\nAmerica is getting back to work.',
   'truncated': False,
   'display_text_range': [0, 231],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5460,
   'favorite_count': 37481,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5460,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Nov 10 00:40:00 +0000 2021',
  'id': 1458232943114166285,
  'id_str': '1458232943114166285',
  'full_text': 'Climate action is not just a moral imperative: it’s also an economic imperative. Investing in our clean energy future leads not only to good-paying jobs and economic recovery, but to making the world a better place for future generations.',
  'truncated': False,
  'display_text_range': [0, 238],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2815,
  'favorite_count': 19434,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 09 18:13:01 +0000 2021',
  'id': 1458135552604217351,
  'id_str': '1458135552604217351',
  'full_text': 'The historic Bipartisan Infrastructure Deal will help American workers and businesses win the 21st century. I’m speaking about this and more with you this afternoon. RSVP now.\nhttps://t.co/cyxzWs95gF',
  'truncated': False,
  'display_text_range': [0, 199],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/cyxzWs95gF',
     'expanded_url': 'https://events.democrats.org/event/426855/?utm_source=dncsocial',
     'display_url': 'events.democrats.org/event/426855/?…',
     'indices': [176, 199]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1115,
  'favorite_count': 6596,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 09 15:12:01 +0000 2021',
  'id': 1458090004736057350,
  'id_str': '1458090004736057350',
  'full_text': 'The Build Back Better Act will be a once-in-a-generation investment in our people, reducing the cost of child care and elder care, providing universal pre-K for every 3-year-old and 4-year-old, and lowering prescription drug costs.\nhttps://t.co/oNRgg0c643',
  'truncated': False,
  'display_text_range': [0, 255],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457407534508216324,
     'id_str': '1457407534508216324',
     'indices': [232, 255],
     'media_url': 'http://pbs.twimg.com/media/FDnAfCRXsBEvFVK.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDnAfCRXsBEvFVK.jpg',
     'url': 'https://t.co/oNRgg0c643',
     'display_url': 'pic.twitter.com/oNRgg0c643',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457407598546886657/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457407598546886657,
     'source_status_id_str': '1457407598546886657',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1457407534508216324,
     'id_str': '1457407534508216324',
     'indices': [232, 255],
     'media_url': 'http://pbs.twimg.com/media/FDnAfCRXsBEvFVK.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDnAfCRXsBEvFVK.jpg',
     'url': 'https://t.co/oNRgg0c643',
     'display_url': 'pic.twitter.com/oNRgg0c643',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457407598546886657/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457407598546886657,
     'source_status_id_str': '1457407598546886657',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 39033,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457407534508216324/vid/720x720/1jtEcyVTYzlneC14.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457407534508216324/vid/320x320/80Xqw8TW-e8pggQW.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457407534508216324/vid/540x540/-WlCIoA0Qtvb4miX.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1457407534508216324/pl/bAguKaINHt_llB_1.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Bipartisan Infrastructure Deal',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1391,
  'favorite_count': 9117,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 09 02:12:00 +0000 2021',
  'id': 1457893706065977346,
  'id_str': '1457893706065977346',
  'full_text': 'From the creation of over 5.6 million jobs to the unemployment rate reaching a pandemic-low of 4.6%, America is getting back to work. \n\nAnd thanks to the American Rescue Plan, we’ve managed it two years sooner than forecasters predicted we could.\nhttps://t.co/uw4GWPYoCw',
  'truncated': False,
  'display_text_range': [0, 270],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457085870155128833,
     'id_str': '1457085870155128833',
     'indices': [247, 270],
     'media_url': 'http://pbs.twimg.com/media/FDib7D_XEAUMDyX.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDib7D_XEAUMDyX.jpg',
     'url': 'https://t.co/uw4GWPYoCw',
     'display_url': 'pic.twitter.com/uw4GWPYoCw',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457085923645132800/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457085923645132800,
     'source_status_id_str': '1457085923645132800',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1457085870155128833,
     'id_str': '1457085870155128833',
     'indices': [247, 270],
     'media_url': 'http://pbs.twimg.com/media/FDib7D_XEAUMDyX.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDib7D_XEAUMDyX.jpg',
     'url': 'https://t.co/uw4GWPYoCw',
     'display_url': 'pic.twitter.com/uw4GWPYoCw',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457085923645132800/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457085923645132800,
     'source_status_id_str': '1457085923645132800',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 23890,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457085870155128833/vid/720x720/tS2EMdLLlexUL8yK.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457085870155128833/vid/540x540/YTF64NzstptywBqg.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457085870155128833/vid/320x320/e0Qu-8AkylGYTm4t.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1457085870155128833/pl/SmW2eViOOqPv2DZR.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Paving the way towards economic recovery',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1666,
  'favorite_count': 9479,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 08 23:12:54 +0000 2021',
  'id': 1457848635480154114,
  'id_str': '1457848635480154114',
  'full_text': 'Folks, I’m excited to share that I’m hosting a virtual grassroots event tomorrow to discuss our historic Bipartisan Infrastructure Deal and the impact it will have on our country’s future. RSVP now. \nhttps://t.co/cyxzWsqG8d',
  'truncated': False,
  'display_text_range': [0, 223],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/cyxzWsqG8d',
     'expanded_url': 'https://events.democrats.org/event/426855/?utm_source=dncsocial',
     'display_url': 'events.democrats.org/event/426855/?…',
     'indices': [200, 223]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1124,
  'favorite_count': 6630,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 08 21:48:21 +0000 2021',
  'id': 1457827354743558148,
  'id_str': '1457827354743558148',
  'full_text': 'With the Bipartisan Infrastructure Deal and the Build Back Better Agenda, fifty years from now, people will look back and say this was the moment when America decided to win the competition of the 21st century. https://t.co/BnUQvEGRmZ',
  'truncated': False,
  'display_text_range': [0, 210],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457827271620837386,
     'id_str': '1457827271620837386',
     'indices': [211, 234],
     'media_url': 'http://pbs.twimg.com/media/FDtXzK9WEAEMAtZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDtXzK9WEAEMAtZ.jpg',
     'url': 'https://t.co/BnUQvEGRmZ',
     'display_url': 'pic.twitter.com/BnUQvEGRmZ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1457827354743558148/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1457827271620837386,
     'id_str': '1457827271620837386',
     'indices': [211, 234],
     'media_url': 'http://pbs.twimg.com/media/FDtXzK9WEAEMAtZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDtXzK9WEAEMAtZ.jpg',
     'url': 'https://t.co/BnUQvEGRmZ',
     'display_url': 'pic.twitter.com/BnUQvEGRmZ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1457827354743558148/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 52052,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1457827271620837386/pl/kQtVO3WI6TG8WOAF.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457827271620837386/vid/720x720/pdDyrgy4mTegXycl.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457827271620837386/vid/540x540/0xTZqCZSLwddpsVi.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457827271620837386/vid/320x320/1lfsuxMq25cvC7CL.mp4?tag=14'}]},
     'additional_media_info': {'title': ' This was the moment when America decided to win the competition of the 21st century.',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1157,
  'favorite_count': 6949,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 08 20:08:00 +0000 2021',
  'id': 1457802102940438528,
  'id_str': '1457802102940438528',
  'full_text': 'When it comes to manufacturing, the Bipartisan Infrastructure Deal will get America off the sidelines.\nhttps://t.co/xsqs0EE5Je',
  'truncated': False,
  'display_text_range': [0, 126],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457399963328172040,
     'id_str': '1457399963328172040',
     'indices': [103, 126],
     'media_url': 'http://pbs.twimg.com/media/FDm5mmWWQAUhpQe.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDm5mmWWQAUhpQe.jpg',
     'url': 'https://t.co/xsqs0EE5Je',
     'display_url': 'pic.twitter.com/xsqs0EE5Je',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457400032357933068/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457400032357933068,
     'source_status_id_str': '1457400032357933068',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1457399963328172040,
     'id_str': '1457399963328172040',
     'indices': [103, 126],
     'media_url': 'http://pbs.twimg.com/media/FDm5mmWWQAUhpQe.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDm5mmWWQAUhpQe.jpg',
     'url': 'https://t.co/xsqs0EE5Je',
     'display_url': 'pic.twitter.com/xsqs0EE5Je',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457400032357933068/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457400032357933068,
     'source_status_id_str': '1457400032357933068',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 28661,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1457399963328172040/pl/1e9NN68LMJmPEp7K.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457399963328172040/vid/720x720/IoSVmNFLjYV0SmmW.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457399963328172040/vid/540x540/ysT5Bko0cNSk4fuz.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457399963328172040/vid/320x320/L4er4RbWF60vWwpD.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Bipartisan Infrastructure Deal',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 838,
  'favorite_count': 5095,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 08 19:25:07 +0000 2021',
  'id': 1457791310069256202,
  'id_str': '1457791310069256202',
  'full_text': 'RT @POTUS: After months of negotiations, we reached a deal on prescription drug prices last week. It’s going to lower prices for folks like…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Nov 08 19:24:32 +0000 2021',
   'id': 1457791164422131712,
   'id_str': '1457791164422131712',
   'full_text': 'After months of negotiations, we reached a deal on prescription drug prices last week. It’s going to lower prices for folks like Gail and make a real difference in the lives of Americans across the country. https://t.co/n3jKc0OonB',
   'truncated': False,
   'display_text_range': [0, 206],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/n3jKc0OonB',
      'expanded_url': 'https://twitter.com/POTUS/status/1425803700916867073',
      'display_url': 'twitter.com/POTUS/status/1…',
      'indices': [207, 230]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': True,
   'quoted_status_id': 1425803700916867073,
   'quoted_status_id_str': '1425803700916867073',
   'quoted_status_permalink': {'url': 'https://t.co/n3jKc0OonB',
    'expanded': 'https://twitter.com/POTUS/status/1425803700916867073',
    'display': 'twitter.com/POTUS/status/1…'},
   'quoted_status': {'created_at': 'Thu Aug 12 12:57:47 +0000 2021',
    'id': 1425803700916867073,
    'id_str': '1425803700916867073',
    'full_text': 'For Gail — and countless others across the country — the cost of insulin is outrageous. I sat down to talk with her about how my Build Back Better Agenda will lower prescription costs and ensure every American has access to the lifesaving drugs they need. https://t.co/zFVSaGZohM',
    'truncated': False,
    'display_text_range': [0, 255],
    'entities': {'hashtags': [],
     'symbols': [],
     'user_mentions': [],
     'urls': [],
     'media': [{'id': 1425803592724844547,
       'id_str': '1425803592724844547',
       'indices': [256, 279],
       'media_url': 'http://pbs.twimg.com/media/E8l46GCXsAUsasS.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/E8l46GCXsAUsasS.jpg',
       'url': 'https://t.co/zFVSaGZohM',
       'display_url': 'pic.twitter.com/zFVSaGZohM',
       'expanded_url': 'https://twitter.com/POTUS/status/1425803700916867073/video/1',
       'type': 'photo',
       'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
        'medium': {'w': 720, 'h': 405, 'resize': 'fit'},
        'small': {'w': 680, 'h': 383, 'resize': 'fit'},
        'large': {'w': 720, 'h': 405, 'resize': 'fit'}}}]},
    'extended_entities': {'media': [{'id': 1425803592724844547,
       'id_str': '1425803592724844547',
       'indices': [256, 279],
       'media_url': 'http://pbs.twimg.com/media/E8l46GCXsAUsasS.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/E8l46GCXsAUsasS.jpg',
       'url': 'https://t.co/zFVSaGZohM',
       'display_url': 'pic.twitter.com/zFVSaGZohM',
       'expanded_url': 'https://twitter.com/POTUS/status/1425803700916867073/video/1',
       'type': 'video',
       'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
        'medium': {'w': 720, 'h': 405, 'resize': 'fit'},
        'small': {'w': 680, 'h': 383, 'resize': 'fit'},
        'large': {'w': 720, 'h': 405, 'resize': 'fit'}},
       'video_info': {'aspect_ratio': [16, 9],
        'duration_millis': 86628,
        'variants': [{'content_type': 'application/x-mpegURL',
          'url': 'https://video.twimg.com/amplify_video/1425803592724844547/pl/xLirKK3dsbFyHvsX.m3u8?tag=14'},
         {'bitrate': 2176000,
          'content_type': 'video/mp4',
          'url': 'https://video.twimg.com/amplify_video/1425803592724844547/vid/1280x720/QevzJo03fud9xlAE.mp4?tag=14'},
         {'bitrate': 832000,
          'content_type': 'video/mp4',
          'url': 'https://video.twimg.com/amplify_video/1425803592724844547/vid/640x360/RCBhPAoONUqJLFbO.mp4?tag=14'},
         {'bitrate': 288000,
          'content_type': 'video/mp4',
          'url': 'https://video.twimg.com/amplify_video/1425803592724844547/vid/480x270/akDi791bDRZ2QZfZ.mp4?tag=14'}]},
       'additional_media_info': {'title': '',
        'description': '',
        'monetizable': False}}]},
    'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'in_reply_to_screen_name': None,
    'user': {'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'name': 'President Biden',
     'screen_name': 'POTUS',
     'location': '',
     'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
     'url': 'https://t.co/MzB1JWfbJ0',
     'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
         'expanded_url': 'http://WhiteHouse.gov',
         'display_url': 'WhiteHouse.gov',
         'indices': [0, 23]}]},
      'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
         'expanded_url': 'http://whitehouse.gov/privacy',
         'display_url': 'whitehouse.gov/privacy',
         'indices': [98, 121]}]}},
     'protected': False,
     'followers_count': 22004745,
     'friends_count': 12,
     'listed_count': 17915,
     'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
     'favourites_count': 0,
     'utc_offset': None,
     'time_zone': None,
     'geo_enabled': False,
     'verified': True,
     'statuses_count': 3117,
     'lang': None,
     'contributors_enabled': False,
     'is_translator': False,
     'is_translation_enabled': False,
     'profile_background_color': 'F5F8FA',
     'profile_background_image_url': None,
     'profile_background_image_url_https': None,
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'has_extended_profile': True,
     'default_profile': True,
     'default_profile_image': False,
     'following': False,
     'follow_request_sent': False,
     'notifications': False,
     'translator_type': 'none',
     'withheld_in_countries': []},
    'geo': None,
    'coordinates': None,
    'place': None,
    'contributors': None,
    'is_quote_status': False,
    'retweet_count': 3020,
    'favorite_count': 15792,
    'favorited': False,
    'retweeted': False,
    'possibly_sensitive': False,
    'lang': 'en'},
   'retweet_count': 1976,
   'favorite_count': 10673,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': True,
  'quoted_status_id': 1425803700916867073,
  'quoted_status_id_str': '1425803700916867073',
  'quoted_status_permalink': {'url': 'https://t.co/n3jKc0OonB',
   'expanded': 'https://twitter.com/POTUS/status/1425803700916867073',
   'display': 'twitter.com/POTUS/status/1…'},
  'retweet_count': 1976,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 08 18:06:01 +0000 2021',
  'id': 1457771403478900741,
  'id_str': '1457771403478900741',
  'full_text': 'On average, families spend $11,000 a year on child care—and sometimes even more. How are working families supposed to get ahead?\n\nOur Build Back Better Framework will ensure nearly all families earning under $300,000 a year won’t pay more than 7% of their income on child care.',
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2305,
  'favorite_count': 13416,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 08 14:44:34 +0000 2021',
  'id': 1457720709090848773,
  'id_str': '1457720709090848773',
  'full_text': 'There are no Republican bridges or Democratic roads. The Bipartisan Infrastructure Deal is a win for the American people—but there is still more work to do. \n\nNow, we must pass the Build Back Better Framework.',
  'truncated': False,
  'display_text_range': [0, 209],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4044,
  'favorite_count': 29429,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 08 01:49:00 +0000 2021',
  'id': 1457525530060808193,
  'id_str': '1457525530060808193',
  'full_text': 'The Bipartisan Infrastructure Deal will help ease inflationary pressures, lowering costs for working families.\nhttps://t.co/FOcchsNWgN',
  'truncated': False,
  'display_text_range': [0, 134],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457378566878924806,
     'id_str': '1457378566878924806',
     'indices': [111, 134],
     'media_url': 'http://pbs.twimg.com/media/FDmmJRrX0AUL1yf.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDmmJRrX0AUL1yf.jpg',
     'url': 'https://t.co/FOcchsNWgN',
     'display_url': 'pic.twitter.com/FOcchsNWgN',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457378638849003526/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457378638849003526,
     'source_status_id_str': '1457378638849003526',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1457378566878924806,
     'id_str': '1457378566878924806',
     'indices': [111, 134],
     'media_url': 'http://pbs.twimg.com/media/FDmmJRrX0AUL1yf.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDmmJRrX0AUL1yf.jpg',
     'url': 'https://t.co/FOcchsNWgN',
     'display_url': 'pic.twitter.com/FOcchsNWgN',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457378638849003526/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457378638849003526,
     'source_status_id_str': '1457378638849003526',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 29800,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457378566878924806/vid/320x320/5vRiQJ_hWERzgL-A.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457378566878924806/vid/540x540/Kfzuktcia3Pixj_5.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457378566878924806/vid/720x720/vIii4dUNtJ80y9jr.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1457378566878924806/pl/wTceTBiSwdCWDVCS.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Bipartisan Infrastructure Deal',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1204,
  'favorite_count': 7532,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 07 23:06:00 +0000 2021',
  'id': 1457484510183006214,
  'id_str': '1457484510183006214',
  'full_text': 'The Build Back Better Framework is a historic investment in addressing the climate crisis.\nhttps://t.co/yDapwpZUTy',
  'truncated': False,
  'display_text_range': [0, 114],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1456383507119362049,
     'id_str': '1456383507119362049',
     'indices': [91, 114],
     'media_url': 'http://pbs.twimg.com/media/FDYdIYxWQAsAnJb.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDYdIYxWQAsAnJb.jpg',
     'url': 'https://t.co/yDapwpZUTy',
     'display_url': 'pic.twitter.com/yDapwpZUTy',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1456383564883320838/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1456383564883320838,
     'source_status_id_str': '1456383564883320838',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1456383507119362049,
     'id_str': '1456383507119362049',
     'indices': [91, 114],
     'media_url': 'http://pbs.twimg.com/media/FDYdIYxWQAsAnJb.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDYdIYxWQAsAnJb.jpg',
     'url': 'https://t.co/yDapwpZUTy',
     'display_url': 'pic.twitter.com/yDapwpZUTy',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1456383564883320838/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1456383564883320838,
     'source_status_id_str': '1456383564883320838',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 40607,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456383507119362049/vid/320x320/cA-Le3uTnWeOI6Y3.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456383507119362049/vid/540x540/nGk5n1W-3DRnFmGe.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1456383507119362049/pl/m10Lt_2u9ktY0mM4.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456383507119362049/vid/720x720/kSjHFqUbDitJwOyP.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1055,
  'favorite_count': 6424,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 07 22:01:00 +0000 2021',
  'id': 1457468152070221829,
  'id_str': '1457468152070221829',
  'full_text': 'For all of you at home who feel left behind and forgotten in an economy that is changing rapidly, this bill is for you.\nhttps://t.co/0Q5ZIvCrLQ',
  'truncated': False,
  'display_text_range': [0, 143],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457098719275503616,
     'id_str': '1457098719275503616',
     'indices': [120, 143],
     'media_url': 'http://pbs.twimg.com/media/FDinnrHX0AIuzxH.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDinnrHX0AIuzxH.jpg',
     'url': 'https://t.co/0Q5ZIvCrLQ',
     'display_url': 'pic.twitter.com/0Q5ZIvCrLQ',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457098784844959746/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457098784844959746,
     'source_status_id_str': '1457098784844959746',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1457098719275503616,
     'id_str': '1457098719275503616',
     'indices': [120, 143],
     'media_url': 'http://pbs.twimg.com/media/FDinnrHX0AIuzxH.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDinnrHX0AIuzxH.jpg',
     'url': 'https://t.co/0Q5ZIvCrLQ',
     'display_url': 'pic.twitter.com/0Q5ZIvCrLQ',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457098784844959746/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457098784844959746,
     'source_status_id_str': '1457098784844959746',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 28061,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457098719275503616/vid/320x320/0WFeMgKQoTI1F6aq.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457098719275503616/vid/720x720/yHG3EeFFygYTSs-l.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457098719275503616/vid/540x540/uEmKKeMvQx7lkKzz.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1457098719275503616/pl/1cp8cv3aTANFHjtn.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Joe Biden: "This bill is for you."',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1618,
  'favorite_count': 9311,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 07 20:38:00 +0000 2021',
  'id': 1457447264276951046,
  'id_str': '1457447264276951046',
  'full_text': 'Climate change is an existential threat to our planet. That’s why the Build Back Better Framework will be an unprecedented effort to combat climate change and puts the United States on track to meet our target of reducing greenhouse gas emissions in half by the year 2030.',
  'truncated': False,
  'display_text_range': [0, 272],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2206,
  'favorite_count': 14184,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 07 18:30:01 +0000 2021',
  'id': 1457415057319632899,
  'id_str': '1457415057319632899',
  'full_text': 'The Bipartisan Infrastructure Deal has passed both houses of Congress. \n\nAfter years of “infrastructure week,” I look forward to signing this historic legislation that will make a once-in-a-generation investment in America’s future.',
  'truncated': False,
  'display_text_range': [0, 232],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2275,
  'favorite_count': 15298,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 07 16:35:00 +0000 2021',
  'id': 1457386112473776128,
  'id_str': '1457386112473776128',
  'full_text': "In our first 10 months, we have worked to:\n— Get Americans back to work\n— Get shots in arms\n— Build a path out of this pandemic\n— Safely reopen schools\n— Pass the historic Bipartisan Infrastructure Deal\n\nWe're on the right track, but our work is far from over.",
  'truncated': False,
  'display_text_range': [0, 260],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4128,
  'favorite_count': 28430,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 07 14:00:09 +0000 2021',
  'id': 1457347140498477059,
  'id_str': '1457347140498477059',
  'full_text': "One year ago this month, the people of this nation made their voices heard and delivered a clear victory, won with the most votes ever cast for a presidential ticket in the history of this country. \n\nNow, we're on our way to building our country back better, one day at a time. https://t.co/epGwWjIU2u",
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457347136203411458,
     'id_str': '1457347136203411458',
     'indices': [278, 301],
     'media_url': 'http://pbs.twimg.com/media/FDmJf7_WUAIaBN3.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDmJf7_WUAIaBN3.jpg',
     'url': 'https://t.co/epGwWjIU2u',
     'display_url': 'pic.twitter.com/epGwWjIU2u',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1457347140498477059/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 801, 'resize': 'fit'},
      'large': {'w': 1499, 'h': 1000, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1457347136203411458,
     'id_str': '1457347136203411458',
     'indices': [278, 301],
     'media_url': 'http://pbs.twimg.com/media/FDmJf7_WUAIaBN3.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDmJf7_WUAIaBN3.jpg',
     'url': 'https://t.co/epGwWjIU2u',
     'display_url': 'pic.twitter.com/epGwWjIU2u',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1457347140498477059/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 801, 'resize': 'fit'},
      'large': {'w': 1499, 'h': 1000, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3906,
  'favorite_count': 30594,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Nov 07 01:07:00 +0000 2021',
  'id': 1457152572117200905,
  'id_str': '1457152572117200905',
  'full_text': 'Together, our infrastructure bill and our Build Back Better Act are the highest value investments that we can make to grow the economy. They will create millions of jobs, increase productivity and wages and reduce costs, and generate significant and historic economic growth.',
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2528,
  'favorite_count': 16902,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 06 22:51:00 +0000 2021',
  'id': 1457118347024273414,
  'id_str': '1457118347024273414',
  'full_text': 'Our infrastructure bill will make high-speed internet affordable and available everywhere in America, so no parent has to sit in the parking lot of a fast food restaurant so their child can access the internet to do their homework.',
  'truncated': False,
  'display_text_range': [0, 231],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3961,
  'favorite_count': 30484,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 06 21:03:00 +0000 2021',
  'id': 1457091168496406532,
  'id_str': '1457091168496406532',
  'full_text': 'The Bipartisan Infrastructure Deal that passed the House of Representatives will create good-paying union jobs and will transform our nation’s transportation system. \nhttps://t.co/sge7GUtSiG',
  'truncated': False,
  'display_text_range': [0, 190],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457018370973392896,
     'id_str': '1457018370973392896',
     'indices': [167, 190],
     'media_url': 'http://pbs.twimg.com/media/FDheh2gWEAMM1Qo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDheh2gWEAMM1Qo.jpg',
     'url': 'https://t.co/sge7GUtSiG',
     'display_url': 'pic.twitter.com/sge7GUtSiG',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457018420029952005/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457018420029952005,
     'source_status_id_str': '1457018420029952005',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1457018370973392896,
     'id_str': '1457018370973392896',
     'indices': [167, 190],
     'media_url': 'http://pbs.twimg.com/media/FDheh2gWEAMM1Qo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDheh2gWEAMM1Qo.jpg',
     'url': 'https://t.co/sge7GUtSiG',
     'display_url': 'pic.twitter.com/sge7GUtSiG',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1457018420029952005/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1457018420029952005,
     'source_status_id_str': '1457018420029952005',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 29562,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457018370973392896/vid/540x540/1c2QuweFtewwCiMn.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457018370973392896/vid/720x720/cDbgaB9fWKXwq04q.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1457018370973392896/pl/sKviSj3DGLw90J-t.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457018370973392896/vid/320x320/yzhTNNQZtI2_wLWc.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1162,
  'favorite_count': 7688,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 06 18:28:00 +0000 2021',
  'id': 1457052161360211977,
  'id_str': '1457052161360211977',
  'full_text': 'The House passed the Bipartisan Infrastructure Deal, a once-in-a-generation investment that will create millions of jobs modernizing our infrastructure, and a rule that will allow passage of my Build Back Better Act.\n\nWe need to deliver. Yesterday, we proved we can.',
  'truncated': False,
  'display_text_range': [0, 266],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2988,
  'favorite_count': 20025,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 06 17:26:30 +0000 2021',
  'id': 1457036684760072193,
  'id_str': '1457036684760072193',
  'full_text': 'I am so happy to say that it’s infrastructure week. https://t.co/qoeyiCvegb',
  'truncated': False,
  'display_text_range': [0, 51],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1457000051209875462,
     'id_str': '1457000051209875462',
     'indices': [52, 75],
     'media_url': 'http://pbs.twimg.com/media/FDhN3WVXoAQPpbO.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDhN3WVXoAQPpbO.jpg',
     'url': 'https://t.co/qoeyiCvegb',
     'display_url': 'pic.twitter.com/qoeyiCvegb',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1457036684760072193/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1457000051209875462,
     'id_str': '1457000051209875462',
     'indices': [52, 75],
     'media_url': 'http://pbs.twimg.com/media/FDhN3WVXoAQPpbO.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDhN3WVXoAQPpbO.jpg',
     'url': 'https://t.co/qoeyiCvegb',
     'display_url': 'pic.twitter.com/qoeyiCvegb',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1457036684760072193/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 8675,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457000051209875462/vid/320x320/PLYyZONGit6PHJzo.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457000051209875462/vid/720x720/yYen-292aipBUBR5.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1457000051209875462/pl/jI8J8TXabM9z2sRT.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1457000051209875462/vid/540x540/-9QC8hfvOv7UsYRw.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3650,
  'favorite_count': 25153,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Nov 06 01:10:09 +0000 2021',
  'id': 1456790978233315335,
  'id_str': '1456790978233315335',
  'full_text': 'RT @POTUS: I am urging all members to vote for both the rule for consideration of the Build Back Better Act and final passage of the Bipart…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Nov 06 01:08:38 +0000 2021',
   'id': 1456790597264625668,
   'id_str': '1456790597264625668',
   'full_text': 'I am urging all members to vote for both the rule for consideration of the Build Back Better Act and final passage of the Bipartisan Infrastructure bill tonight.\n\nI am confident that during the week of November 15, the House will pass the Build Back Better Act.',
   'truncated': False,
   'display_text_range': [0, 261],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3826,
   'favorite_count': 25615,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3826,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 05 21:46:00 +0000 2021',
  'id': 1456739602505650179,
  'id_str': '1456739602505650179',
  'full_text': "The Build Back Better Framework lowers your bills for health care, child care, prescription drugs, and preschool. Plus, families get a tax cut. \n\nThat's how we’ll give people across our country some breathing room.",
  'truncated': False,
  'display_text_range': [0, 214],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3023,
  'favorite_count': 17060,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 05 19:03:01 +0000 2021',
  'id': 1456698584817078275,
  'id_str': '1456698584817078275',
  'full_text': 'Thanks to our American Rescue Plan and a successful vaccine deployment, America continues to add jobs at a record pace. Our economy is on the move.\nhttps://t.co/mtm18TseYG',
  'truncated': False,
  'display_text_range': [0, 171],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1456668915363373061,
     'id_str': '1456668915363373061',
     'indices': [148, 171],
     'media_url': 'http://pbs.twimg.com/media/FDcgs86XIAcs7pH.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDcgs86XIAcs7pH.jpg',
     'url': 'https://t.co/mtm18TseYG',
     'display_url': 'pic.twitter.com/mtm18TseYG',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1456668966177411079/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1456668966177411079,
     'source_status_id_str': '1456668966177411079',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1456668915363373061,
     'id_str': '1456668915363373061',
     'indices': [148, 171],
     'media_url': 'http://pbs.twimg.com/media/FDcgs86XIAcs7pH.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDcgs86XIAcs7pH.jpg',
     'url': 'https://t.co/mtm18TseYG',
     'display_url': 'pic.twitter.com/mtm18TseYG',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1456668966177411079/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1456668966177411079,
     'source_status_id_str': '1456668966177411079',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 30533,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456668915363373061/vid/320x320/zoJMIofDWVN7ARW-.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1456668915363373061/pl/OT4RvFpIwtypb6Fd.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456668915363373061/vid/540x540/FjIP1ly6Rcu3nEOE.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456668915363373061/vid/720x720/zolfpyD8YayAJT8b.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1353,
  'favorite_count': 7948,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 05 14:02:00 +0000 2021',
  'id': 1456622833396850693,
  'id_str': '1456622833396850693',
  'full_text': 'Action on climate change is a moral imperative. But it is also an economic imperative. We must build an equitable clean energy future that creates millions of good-paying jobs.',
  'truncated': False,
  'display_text_range': [0, 176],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2712,
  'favorite_count': 18707,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 05 13:31:01 +0000 2021',
  'id': 1456615036487667716,
  'id_str': '1456615036487667716',
  'full_text': 'RT @POTUS: Over 5.6 million jobs created. Under 5% unemployment. \n\nThis is a significant improvement from when I took office, and a sign th…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Nov 05 13:30:33 +0000 2021',
   'id': 1456614916425670665,
   'id_str': '1456614916425670665',
   'full_text': 'Over 5.6 million jobs created. Under 5% unemployment. \n\nThis is a significant improvement from when I took office, and a sign that we are on the right track.',
   'truncated': False,
   'display_text_range': [0, 157],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9013,
   'favorite_count': 59549,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9013,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Nov 05 01:41:00 +0000 2021',
  'id': 1456436355043635205,
  'id_str': '1456436355043635205',
  'full_text': 'Our message to the world is that the United States will be a partner as we tackle this climate crisis. \n\nThat’s why we’re working on delivering our goal of reducing U.S. gas emissions by at least 50% by 2030.\nhttps://t.co/naF9BmNtt6',
  'truncated': False,
  'display_text_range': [0, 232],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1456319338676432906,
     'id_str': '1456319338676432906',
     'indices': [209, 232],
     'media_url': 'http://pbs.twimg.com/media/FDXixD_XIAUfxw1.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDXixD_XIAUfxw1.jpg',
     'url': 'https://t.co/naF9BmNtt6',
     'display_url': 'pic.twitter.com/naF9BmNtt6',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1456319392497684480/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1456319392497684480,
     'source_status_id_str': '1456319392497684480',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1456319338676432906,
     'id_str': '1456319338676432906',
     'indices': [209, 232],
     'media_url': 'http://pbs.twimg.com/media/FDXixD_XIAUfxw1.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDXixD_XIAUfxw1.jpg',
     'url': 'https://t.co/naF9BmNtt6',
     'display_url': 'pic.twitter.com/naF9BmNtt6',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1456319392497684480/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1456319392497684480,
     'source_status_id_str': '1456319392497684480',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 23590,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456319338676432906/vid/720x720/wuRBO3gPTZWStB1D.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1456319338676432906/pl/aEZWNw-9ngotFkg2.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456319338676432906/vid/320x320/IyM-rzE_Lx4K9zpy.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456319338676432906/vid/540x540/gt_KkjIJ-B1xwlpR.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1231,
  'favorite_count': 7976,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 04 19:22:01 +0000 2021',
  'id': 1456340976683864069,
  'id_str': '1456340976683864069',
  'full_text': 'For children, learning and socializing with their classmates and teachers makes a world of difference from having to learn from home. \n\nVaccinating our children will not only help us save lives, but will help us keep our schools open and keep our kids in the classroom.',
  'truncated': False,
  'display_text_range': [0, 269],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1894,
  'favorite_count': 13265,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 04 18:16:01 +0000 2021',
  'id': 1456324371224698888,
  'id_str': '1456324371224698888',
  'full_text': 'An investment in our children is an investment in our future. That’s why the Build Back Better Framework will deliver two years of free, universal preschool for more than six million children ages 3 and 4.',
  'truncated': False,
  'display_text_range': [0, 205],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1973,
  'favorite_count': 13683,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 04 14:50:15 +0000 2021',
  'id': 1456272586187284481,
  'id_str': '1456272586187284481',
  'full_text': 'RT @POTUS: May the light of Diwali remind us that from darkness there is knowledge, wisdom, and truth. From division, unity. From despair,…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Nov 04 14:46:04 +0000 2021',
   'id': 1456271532783661057,
   'id_str': '1456271532783661057',
   'full_text': 'May the light of Diwali remind us that from darkness there is knowledge, wisdom, and truth. From division, unity. From despair, hope.\n\nTo Hindus, Sikhs, Jains, and Buddhists celebrating in America and around the world — from the People’s House to yours, happy Diwali. https://t.co/1ubBePGB4f',
   'truncated': False,
   'display_text_range': [0, 267],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1456271522587299850,
      'id_str': '1456271522587299850',
      'indices': [268, 291],
      'media_url': 'http://pbs.twimg.com/media/FDW3O_BVUAoiWBy.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FDW3O_BVUAoiWBy.jpg',
      'url': 'https://t.co/1ubBePGB4f',
      'display_url': 'pic.twitter.com/1ubBePGB4f',
      'expanded_url': 'https://twitter.com/POTUS/status/1456271532783661057/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1456271522587299850,
      'id_str': '1456271522587299850',
      'indices': [268, 291],
      'media_url': 'http://pbs.twimg.com/media/FDW3O_BVUAoiWBy.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FDW3O_BVUAoiWBy.jpg',
      'url': 'https://t.co/1ubBePGB4f',
      'display_url': 'pic.twitter.com/1ubBePGB4f',
      'expanded_url': 'https://twitter.com/POTUS/status/1456271532783661057/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 23117,
   'favorite_count': 170103,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 23117,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 04 14:17:01 +0000 2021',
  'id': 1456264221868507142,
  'id_str': '1456264221868507142',
  'full_text': 'The bottom line: We’ve secured enough supply for every child in America to receive a COVID-19 vaccine. \nhttps://t.co/S35R34wwjw',
  'truncated': False,
  'display_text_range': [0, 127],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1456039010384687111,
     'id_str': '1456039010384687111',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/FDTkJTRXoAANUlE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDTkJTRXoAANUlE.jpg',
     'url': 'https://t.co/S35R34wwjw',
     'display_url': 'pic.twitter.com/S35R34wwjw',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1456059871120482312/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1456059871120482312,
     'source_status_id_str': '1456059871120482312',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1456039010384687111,
     'id_str': '1456039010384687111',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/FDTkJTRXoAANUlE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDTkJTRXoAANUlE.jpg',
     'url': 'https://t.co/S35R34wwjw',
     'display_url': 'pic.twitter.com/S35R34wwjw',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1456059871120482312/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1456059871120482312,
     'source_status_id_str': '1456059871120482312',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 29229,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1456039010384687111/pl/XhtyYmoqzima6AxQ.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456039010384687111/vid/540x540/KVQuHKPL4dCAmCWi.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456039010384687111/vid/720x720/m1DBtOjFqqOyA1Pq.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456039010384687111/vid/320x320/rDNjZ_8VSeOPsJ0B.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1036,
  'favorite_count': 7782,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Nov 04 00:28:22 +0000 2021',
  'id': 1456055687813926926,
  'id_str': '1456055687813926926',
  'full_text': 'We have already made extraordinary progress to put this pandemic behind us, and today, millions of parents can find relief in knowing that children between the ages of 5 and 11 are now eligible to receive a COVID-19 vaccine. \n\nVisit https://t.co/EwdQ2dFHwG to make an appointment. https://t.co/R0E8UCYT7g',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/EwdQ2dFHwG',
     'expanded_url': 'http://vaccines.gov',
     'display_url': 'vaccines.gov',
     'indices': [233, 256]}],
   'media': [{'id': 1456034724615446531,
     'id_str': '1456034724615446531',
     'indices': [281, 304],
     'media_url': 'http://pbs.twimg.com/media/FDTgMO5WEAIHfRW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDTgMO5WEAIHfRW.jpg',
     'url': 'https://t.co/R0E8UCYT7g',
     'display_url': 'pic.twitter.com/R0E8UCYT7g',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1456055687813926926/video/1',
     'type': 'photo',
     'sizes': {'small': {'w': 320, 'h': 320, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 320, 'h': 320, 'resize': 'fit'},
      'large': {'w': 320, 'h': 320, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1456034724615446531,
     'id_str': '1456034724615446531',
     'indices': [281, 304],
     'media_url': 'http://pbs.twimg.com/media/FDTgMO5WEAIHfRW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDTgMO5WEAIHfRW.jpg',
     'url': 'https://t.co/R0E8UCYT7g',
     'display_url': 'pic.twitter.com/R0E8UCYT7g',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1456055687813926926/video/1',
     'type': 'video',
     'sizes': {'small': {'w': 320, 'h': 320, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 320, 'h': 320, 'resize': 'fit'},
      'large': {'w': 320, 'h': 320, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 26359,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456034724615446531/vid/720x720/5Cg25lXiDu4M43qS.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456034724615446531/vid/540x540/ejCXfsQ9BPZn3RUB.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1456034724615446531/vid/320x320/XcxTgbOsjg00Pn8J.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1456034724615446531/pl/ICttwU2ndRYhky-T.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1128,
  'favorite_count': 7071,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 02 18:26:03 +0000 2021',
  'id': 1455602117943697408,
  'id_str': '1455602117943697408',
  'full_text': 'Within the growing climate catastrophe, there is incredible opportunity—not just for the United States, but for all of us. \nhttps://t.co/pAu676gDeD',
  'truncated': False,
  'display_text_range': [0, 147],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1455274703321538560,
     'id_str': '1455274703321538560',
     'indices': [124, 147],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1455274703321538560/img/rlSpvjhqrE33_jfy.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1455274703321538560/img/rlSpvjhqrE33_jfy.jpg',
     'url': 'https://t.co/pAu676gDeD',
     'display_url': 'pic.twitter.com/pAu676gDeD',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1455274745214144514/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1455274745214144514,
     'source_status_id_str': '1455274745214144514',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1455274703321538560,
     'id_str': '1455274703321538560',
     'indices': [124, 147],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1455274703321538560/img/rlSpvjhqrE33_jfy.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1455274703321538560/img/rlSpvjhqrE33_jfy.jpg',
     'url': 'https://t.co/pAu676gDeD',
     'display_url': 'pic.twitter.com/pAu676gDeD',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1455274745214144514/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1455274745214144514,
     'source_status_id_str': '1455274745214144514',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 24357,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455274703321538560/vid/720x720/QLDxVxGD1CPuUSAT.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1455274703321538560/pl/GsK-M6iSYmstHx6J.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455274703321538560/vid/540x540/2ie1TmYqA9akNG_a.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455274703321538560/vid/320x320/0JsgAaWqQV2AgavP.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Joe Biden: The climate crisis presents an opportunity to invest in our future. ',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1138,
  'favorite_count': 6290,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 02 17:07:10 +0000 2021',
  'id': 1455582265522671620,
  'id_str': '1455582265522671620',
  'full_text': 'It’s Election Day, Virginia and New Jersey.\n\nCheck https://t.co/Hy8C4mIL2M to confirm your polling place and go vote.',
  'truncated': False,
  'display_text_range': [0, 117],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/Hy8C4mIL2M',
     'expanded_url': 'http://IWillVote.com',
     'display_url': 'IWillVote.com',
     'indices': [51, 74]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1271,
  'favorite_count': 7264,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 02 15:53:03 +0000 2021',
  'id': 1455563613071151108,
  'id_str': '1455563613071151108',
  'full_text': 'The Build Back Better Framework will cut U.S. greenhouse gas emissions by well over a gigaton by 2030, make energy bills more affordable  for Americans, and deliver cleaner air and water for our children.',
  'truncated': False,
  'display_text_range': [0, 204],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2165,
  'favorite_count': 15205,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 02 12:00:19 +0000 2021',
  'id': 1455505046700011522,
  'id_str': '1455505046700011522',
  'full_text': 'Go vote, Virginia and New Jersey! https://t.co/eoxT07d7QB',
  'truncated': False,
  'display_text_range': [0, 57],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/eoxT07d7QB',
     'expanded_url': 'http://iwillvote.com',
     'display_url': 'iwillvote.com',
     'indices': [34, 57]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2093,
  'favorite_count': 9455,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Nov 02 01:09:00 +0000 2021',
  'id': 1455341136608903168,
  'id_str': '1455341136608903168',
  'full_text': 'Climate change is already ravaging the world. We know that none of us can escape the worst that’s yet to come if we fail to seize this moment.\nhttps://t.co/g6ESsvqV5b',
  'truncated': False,
  'display_text_range': [0, 166],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1455270935439843330,
     'id_str': '1455270935439843330',
     'indices': [143, 166],
     'media_url': 'http://pbs.twimg.com/media/FDIpQAVX0AA2vAo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDIpQAVX0AA2vAo.jpg',
     'url': 'https://t.co/g6ESsvqV5b',
     'display_url': 'pic.twitter.com/g6ESsvqV5b',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1455270990133571594/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1455270990133571594,
     'source_status_id_str': '1455270990133571594',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1455270935439843330,
     'id_str': '1455270935439843330',
     'indices': [143, 166],
     'media_url': 'http://pbs.twimg.com/media/FDIpQAVX0AA2vAo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDIpQAVX0AA2vAo.jpg',
     'url': 'https://t.co/g6ESsvqV5b',
     'display_url': 'pic.twitter.com/g6ESsvqV5b',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1455270990133571594/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1455270990133571594,
     'source_status_id_str': '1455270990133571594',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 41666,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455270935439843330/vid/320x320/m3W3H8scyvtctwZ5.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455270935439843330/vid/540x540/zB3YFw_GKvQUVtvv.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455270935439843330/vid/720x720/qZAo4q8Fg7zDP3il.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1455270935439843330/pl/F4-MZPp4apjvTZo-.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'President Joe Biden on the Climate Crisis.',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1579,
  'favorite_count': 9780,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Nov 01 23:07:00 +0000 2021',
  'id': 1455310434320502786,
  'id_str': '1455310434320502786',
  'full_text': 'The Build Back Better Framework is the most significant investment to combat the climate crisis that any advanced nation has ever made.\nhttps://t.co/yNkEXZzjRa',
  'truncated': False,
  'display_text_range': [0, 159],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1455253312698261506,
     'id_str': '1455253312698261506',
     'indices': [136, 159],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1455253312698261506/img/RTpOTCKpv2yXZwXG.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1455253312698261506/img/RTpOTCKpv2yXZwXG.jpg',
     'url': 'https://t.co/yNkEXZzjRa',
     'display_url': 'pic.twitter.com/yNkEXZzjRa',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1455253376992694287/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1455253376992694287,
     'source_status_id_str': '1455253376992694287',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1455253312698261506,
     'id_str': '1455253312698261506',
     'indices': [136, 159],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1455253312698261506/img/RTpOTCKpv2yXZwXG.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1455253312698261506/img/RTpOTCKpv2yXZwXG.jpg',
     'url': 'https://t.co/yNkEXZzjRa',
     'display_url': 'pic.twitter.com/yNkEXZzjRa',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1455253376992694287/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1455253376992694287,
     'source_status_id_str': '1455253376992694287',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 54654,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455253312698261506/vid/540x540/i-_tIDkYZ7BMvP_t.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455253312698261506/vid/320x320/yiOfxdB2eObKk0NP.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1455253312698261506/pl/M35WDJwJIy0ovD37.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1455253312698261506/vid/720x720/rpI8F3oYnIbwkt2u.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Joe Biden: My Build Back Better Framework will make historic investments in clean energy. ',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1133,
  'favorite_count': 6740,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 31 16:45:01 +0000 2021',
  'id': 1454851916077404160,
  'id_str': '1454851916077404160',
  'full_text': 'Virginia and New Jersey, there are only a few days left to get out the vote and help elect @TerryMcAuliffe, @PhilMurphyNJ, and other Democrats up and down the ballot. https://t.co/Hy8C4mIL2M',
  'truncated': False,
  'display_text_range': [0, 190],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [91, 106]}],
   'urls': [{'url': 'https://t.co/Hy8C4mIL2M',
     'expanded_url': 'http://IWillVote.com',
     'display_url': 'IWillVote.com',
     'indices': [167, 190]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1944,
  'favorite_count': 8071,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 31 15:08:28 +0000 2021',
  'id': 1454827621125181440,
  'id_str': '1454827621125181440',
  'full_text': 'With the investments in the Build Back Better Framework, there will be no stopping the American people. https://t.co/ilFX4DxkI6',
  'truncated': False,
  'display_text_range': [0, 103],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1454827532226863105,
     'id_str': '1454827532226863105',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/FDCWAjBXoAA1NBu.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDCWAjBXoAA1NBu.jpg',
     'url': 'https://t.co/ilFX4DxkI6',
     'display_url': 'pic.twitter.com/ilFX4DxkI6',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1454827621125181440/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1454827532226863105,
     'id_str': '1454827532226863105',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/FDCWAjBXoAA1NBu.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FDCWAjBXoAA1NBu.jpg',
     'url': 'https://t.co/ilFX4DxkI6',
     'display_url': 'pic.twitter.com/ilFX4DxkI6',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1454827621125181440/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 60126,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454827532226863105/vid/540x540/Gf0GaaUiPbb1dGjs.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454827532226863105/vid/720x720/Kn6TRLfTwJk2CUE3.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1454827532226863105/pl/ywo_C-bQT-5TwNVS.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454827532226863105/vid/320x320/y-r5OslNvKTUTz0U.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Build Back Better Framework',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1554,
  'favorite_count': 9147,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 30 21:23:01 +0000 2021',
  'id': 1454559489819136000,
  'id_str': '1454559489819136000',
  'full_text': 'Let’s turn out Virginia for @TerryMcAuliffe: https://t.co/Hy8C4mIL2M. https://t.co/dIsOc4lYj7',
  'truncated': False,
  'display_text_range': [0, 69],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [28, 43]}],
   'urls': [{'url': 'https://t.co/Hy8C4mIL2M',
     'expanded_url': 'http://IWillVote.com',
     'display_url': 'IWillVote.com',
     'indices': [45, 68]}],
   'media': [{'id': 1454559486514024450,
     'id_str': '1454559486514024450',
     'indices': [70, 93],
     'media_url': 'http://pbs.twimg.com/media/FC-iJXpX0AIiXCG.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC-iJXpX0AIiXCG.jpg',
     'url': 'https://t.co/dIsOc4lYj7',
     'display_url': 'pic.twitter.com/dIsOc4lYj7',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1454559489819136000/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 405, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 714, 'resize': 'fit'},
      'large': {'w': 1869, 'h': 1112, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1454559486514024450,
     'id_str': '1454559486514024450',
     'indices': [70, 93],
     'media_url': 'http://pbs.twimg.com/media/FC-iJXpX0AIiXCG.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC-iJXpX0AIiXCG.jpg',
     'url': 'https://t.co/dIsOc4lYj7',
     'display_url': 'pic.twitter.com/dIsOc4lYj7',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1454559489819136000/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 405, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 714, 'resize': 'fit'},
      'large': {'w': 1869, 'h': 1112, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2722,
  'favorite_count': 11904,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 30 17:41:01 +0000 2021',
  'id': 1454503621723402240,
  'id_str': '1454503621723402240',
  'full_text': "Virginia, you've made incredible progress over the last few years on jobs, the economy, health care, education, growing the middle class, and more. \n\nTo protect that progress, you have to once again show up for democracy and make sure to vote on Tuesday. The country is watching.",
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3762,
  'favorite_count': 20724,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 30 15:07:17 +0000 2021',
  'id': 1454464935736627210,
  'id_str': '1454464935736627210',
  'full_text': '.@TerryMcAuliffe is the proven leader who will move Virginia forward. \n\nVirginia, make sure you show up and vote before polls close on 11/2. Every vote matters. https://t.co/dR08gt64QP',
  'truncated': False,
  'display_text_range': [0, 160],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [1, 16]}],
   'urls': [],
   'media': [{'id': 1454464864685109248,
     'id_str': '1454464864685109248',
     'indices': [161, 184],
     'media_url': 'http://pbs.twimg.com/media/FC9MJgSXEAAXoGW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC9MJgSXEAAXoGW.jpg',
     'url': 'https://t.co/dR08gt64QP',
     'display_url': 'pic.twitter.com/dR08gt64QP',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1454464935736627210/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1454464864685109248,
     'id_str': '1454464864685109248',
     'indices': [161, 184],
     'media_url': 'http://pbs.twimg.com/media/FC9MJgSXEAAXoGW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC9MJgSXEAAXoGW.jpg',
     'url': 'https://t.co/dR08gt64QP',
     'display_url': 'pic.twitter.com/dR08gt64QP',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1454464935736627210/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 31781,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454464864685109248/vid/320x320/w8pXhs2ocIchFvW7.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1454464864685109248/pl/jMZwB24FType1QuE.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454464864685109248/vid/720x720/u7a9eO54M7_YSEem.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454464864685109248/vid/540x540/amDgD0LIBNBOBBHV.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Vote for Terry',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2097,
  'favorite_count': 8628,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 30 00:07:01 +0000 2021',
  'id': 1454238375314132998,
  'id_str': '1454238375314132998',
  'full_text': 'The Build Back Better Framework will make the most significant investment to deal with the climate crisis—beyond any other advanced nation in the world.\nhttps://t.co/FcamNccHg8',
  'truncated': False,
  'display_text_range': [0, 176],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1453916248576774146,
     'id_str': '1453916248576774146',
     'indices': [153, 176],
     'media_url': 'http://pbs.twimg.com/media/FC1ZKiDX0AgIVSE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC1ZKiDX0AgIVSE.jpg',
     'url': 'https://t.co/FcamNccHg8',
     'display_url': 'pic.twitter.com/FcamNccHg8',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1453916296958066688/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1453916296958066688,
     'source_status_id_str': '1453916296958066688',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1453916248576774146,
     'id_str': '1453916248576774146',
     'indices': [153, 176],
     'media_url': 'http://pbs.twimg.com/media/FC1ZKiDX0AgIVSE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC1ZKiDX0AgIVSE.jpg',
     'url': 'https://t.co/FcamNccHg8',
     'display_url': 'pic.twitter.com/FcamNccHg8',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1453916296958066688/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1453916296958066688,
     'source_status_id_str': '1453916296958066688',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 36953,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453916248576774146/vid/540x540/pgQzb6DA1tahBNQO.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453916248576774146/vid/720x720/B3B08dJ75CHtUNDF.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453916248576774146/vid/320x320/LT9u9mU-dcSC5zVm.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1453916248576774146/pl/SIC6Fue2SpP3oPJm.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Build Back Better Framework: The Climate Crisis',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1178,
  'favorite_count': 6303,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 29 21:53:28 +0000 2021',
  'id': 1454204765030780928,
  'id_str': '1454204765030780928',
  'full_text': 'Tune in now to join @KamalaHarris and @TerryMcAuliffe as they get out the vote in Norfolk, Virginia with special guest @Pharrell. https://t.co/a8imAatpHH',
  'truncated': False,
  'display_text_range': [0, 153],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'KamalaHarris',
     'name': 'Kamala Harris',
     'id': 30354991,
     'id_str': '30354991',
     'indices': [20, 33]},
    {'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [38, 53]},
    {'screen_name': 'Pharrell',
     'name': 'Pharrell Williams',
     'id': 338084918,
     'id_str': '338084918',
     'indices': [119, 128]}],
   'urls': [{'url': 'https://t.co/a8imAatpHH',
     'expanded_url': 'https://twitter.com/i/broadcasts/1BdGYwBaEwYxX',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [130, 153]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 791,
  'favorite_count': 3820,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 29 20:59:09 +0000 2021',
  'id': 1454191097438146560,
  'id_str': '1454191097438146560',
  'full_text': 'Virginia, you can’t take anything for granted. Vote. https://t.co/pqh6vzR0Tu',
  'truncated': False,
  'display_text_range': [0, 52],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1454191059744010243,
     'id_str': '1454191059744010243',
     'indices': [53, 76],
     'media_url': 'http://pbs.twimg.com/media/FC5TGCyXMAkI-aq.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC5TGCyXMAkI-aq.jpg',
     'url': 'https://t.co/pqh6vzR0Tu',
     'display_url': 'pic.twitter.com/pqh6vzR0Tu',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1454191097438146560/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1454191059744010243,
     'id_str': '1454191059744010243',
     'indices': [53, 76],
     'media_url': 'http://pbs.twimg.com/media/FC5TGCyXMAkI-aq.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC5TGCyXMAkI-aq.jpg',
     'url': 'https://t.co/pqh6vzR0Tu',
     'display_url': 'pic.twitter.com/pqh6vzR0Tu',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1454191097438146560/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 23523,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454191059744010243/vid/540x540/7JZ6AbyrT2OhsltU.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454191059744010243/vid/320x320/2hXgNW96ZSM_5OWk.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1454191059744010243/pl/lawG6ndqS0cCruT0.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1454191059744010243/vid/720x720/AidQNOOurLnhKY31.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Virginia, you can’t take anything for granted',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1965,
  'favorite_count': 8820,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 29 20:36:01 +0000 2021',
  'id': 1454185272317521926,
  'id_str': '1454185272317521926',
  'full_text': 'Nearly 2 million women in America are not working today because they can’t afford child care. \n\nThe Build Back Better Framework will help working families by ensuring nearly all middle-class families will pay no more than 7% of their income on child care.',
  'truncated': False,
  'display_text_range': [0, 255],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3145,
  'favorite_count': 18084,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 29 19:05:02 +0000 2021',
  'id': 1454162379315494916,
  'id_str': '1454162379315494916',
  'full_text': 'Virginia, reproductive rights are under attack throughout the country and we must elect leaders who are absolutely committed to protecting those rights.  \n\n@TerryMcAuliffe has made it clear that he will be a brick wall against anyone trying to threaten reproductive rights.',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [156, 171]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2277,
  'favorite_count': 10176,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 29 18:07:01 +0000 2021',
  'id': 1454147776993013767,
  'id_str': '1454147776993013767',
  'full_text': 'It’s time to deal the middle class back in. \nhttps://t.co/FOsaDL84jI',
  'truncated': False,
  'display_text_range': [0, 68],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1453847546812854272,
     'id_str': '1453847546812854272',
     'indices': [45, 68],
     'media_url': 'http://pbs.twimg.com/media/FC0bHFEagAAukaR.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC0bHFEagAAukaR.jpg',
     'url': 'https://t.co/FOsaDL84jI',
     'display_url': 'pic.twitter.com/FOsaDL84jI',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1453848070974812166/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1453848070974812166,
     'source_status_id_str': '1453848070974812166',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1453847546812854272,
     'id_str': '1453847546812854272',
     'indices': [45, 68],
     'media_url': 'http://pbs.twimg.com/media/FC0bHFEagAAukaR.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC0bHFEagAAukaR.jpg',
     'url': 'https://t.co/FOsaDL84jI',
     'display_url': 'pic.twitter.com/FOsaDL84jI',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1453848070974812166/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1453848070974812166,
     'source_status_id_str': '1453848070974812166',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 49916,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453847546812854272/vid/320x320/LrRGS7eDz-YpMtEZ.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453847546812854272/vid/720x720/LEfYr5Nupvg1nLtj.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1453847546812854272/pl/Wtv96huGgawmYHLR.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453847546812854272/vid/540x540/1UawHVkztjNsikuN.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1241,
  'favorite_count': 8191,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 29 14:10:01 +0000 2021',
  'id': 1454088135294472196,
  'id_str': '1454088135294472196',
  'full_text': 'Later today, @KamalaHarris will join @HarrisonJaime for a grassroots event to discuss how the Build Back Better Framework will invest in the American people. Let’s get this done.\n\nRSVP here: https://t.co/WdP6DytKcr',
  'truncated': False,
  'display_text_range': [0, 214],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'KamalaHarris',
     'name': 'Kamala Harris',
     'id': 30354991,
     'id_str': '30354991',
     'indices': [13, 26]},
    {'screen_name': 'harrisonjaime',
     'name': 'Jaime Harrison, DNC Chair',
     'id': 73754019,
     'id_str': '73754019',
     'indices': [37, 51]}],
   'urls': [{'url': 'https://t.co/WdP6DytKcr',
     'expanded_url': 'https://events.democrats.org/event/424809/?utm_source=dncsocial',
     'display_url': 'events.democrats.org/event/424809/?…',
     'indices': [191, 214]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 652,
  'favorite_count': 4284,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 28 23:42:00 +0000 2021',
  'id': 1453869691043303425,
  'id_str': '1453869691043303425',
  'full_text': "Through the Build Back Better Framework, we’re going to create an economy that works for working families, not just the few at the top. \n\nAnd if you earn less than $400,000, you won't pay a single penny more in federal taxes. Period.",
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2623,
  'favorite_count': 17398,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 28 21:29:00 +0000 2021',
  'id': 1453836220090421253,
  'id_str': '1453836220090421253',
  'full_text': 'Let’s get the Build Back Better framework done.\nhttps://t.co/x565C1wZQ3',
  'truncated': False,
  'display_text_range': [0, 71],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1453829497925537800,
     'id_str': '1453829497925537800',
     'indices': [48, 71],
     'media_url': 'http://pbs.twimg.com/media/FC0KUtoaUAA4B_g.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC0KUtoaUAA4B_g.jpg',
     'url': 'https://t.co/x565C1wZQ3',
     'display_url': 'pic.twitter.com/x565C1wZQ3',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1453829610832113673/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1453829610832113673,
     'source_status_id_str': '1453829610832113673',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1453829497925537800,
     'id_str': '1453829497925537800',
     'indices': [48, 71],
     'media_url': 'http://pbs.twimg.com/media/FC0KUtoaUAA4B_g.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FC0KUtoaUAA4B_g.jpg',
     'url': 'https://t.co/x565C1wZQ3',
     'display_url': 'pic.twitter.com/x565C1wZQ3',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1453829610832113673/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1453829610832113673,
     'source_status_id_str': '1453829610832113673',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 24024,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453829497925537800/vid/540x540/QYVQXJ3zQdWcJvkK.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1453829497925537800/pl/noIPM3cpgNxjOWfh.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453829497925537800/vid/320x320/s7XcjsmeRu01F-D_.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1453829497925537800/vid/720x720/_MeQHzOwbPcz61-d.mp4?tag=14'}]},
     'additional_media_info': {'title': 'The Build Back Better Framework',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155526,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 740,
  'favorite_count': 4764,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 28 19:17:00 +0000 2021',
  'id': 1453803003245473801,
  'id_str': '1453803003245473801',
  'full_text': 'The Build Back Better Framework will lower costs for working families without adding to the deficit.',
  'truncated': False,
  'display_text_range': [0, 100],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1299,
  'favorite_count': 9808,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 28 18:17:01 +0000 2021',
  'id': 1453787905902718977,
  'id_str': '1453787905902718977',
  'full_text': 'The Build Back Better Framework will deliver two years of free preschool for every 3- and 4-year-old in America and save most American families more than half of their spending on child care.',
  'truncated': False,
  'display_text_range': [0, 191],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1917,
  'favorite_count': 12084,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 28 17:15:04 +0000 2021',
  'id': 1453772314139635725,
  'id_str': '1453772314139635725',
  'full_text': 'With the Build Back Better Framework, we will:\n\n✅ Deliver free, universal pre-K for 3- and 4-year-olds\n✅ Embark on an unprecedented effort to combat climate change\n✅ Create millions of good-paying jobs\n✅ Make health care more affordable for millions of Americans',
  'truncated': False,
  'display_text_range': [0, 262],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1479,
  'favorite_count': 7863,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 28 13:22:59 +0000 2021',
  'id': 1453713908888449027,
  'id_str': '1453713908888449027',
  'full_text': 'The Build Back Better Framework will set the U.S. on course to meet our climate targets, create millions of good-paying jobs, and grow our economy from the bottom up and the middle out.\n\nIt’s fully paid for by asking corporations and the wealthiest to reward work, not wealth.',
  'truncated': False,
  'display_text_range': [0, 276],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1881,
  'favorite_count': 11311,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 28 00:11:03 +0000 2021',
  'id': 1453514612872290304,
  'id_str': '1453514612872290304',
  'full_text': 'Virginia, show up.\nShow up like you did for Barack and me.\nShow up like you did for me and Kamala.\n\nAnd show up for a proven leader like @TerryMcAuliffe. Vote. https://t.co/fU8Jc1RmYr',
  'truncated': False,
  'display_text_range': [0, 159],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [137, 152]}],
   'urls': [],
   'media': [{'id': 1453514609529434113,
     'id_str': '1453514609529434113',
     'indices': [160, 183],
     'media_url': 'http://pbs.twimg.com/media/FCvr1hjXsAEurDg.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCvr1hjXsAEurDg.jpg',
     'url': 'https://t.co/fU8Jc1RmYr',
     'display_url': 'pic.twitter.com/fU8Jc1RmYr',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1453514612872290304/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 382, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'large': {'w': 1542, 'h': 867, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1453514609529434113,
     'id_str': '1453514609529434113',
     'indices': [160, 183],
     'media_url': 'http://pbs.twimg.com/media/FCvr1hjXsAEurDg.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCvr1hjXsAEurDg.jpg',
     'url': 'https://t.co/fU8Jc1RmYr',
     'display_url': 'pic.twitter.com/fU8Jc1RmYr',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1453514612872290304/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 382, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'large': {'w': 1542, 'h': 867, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4689,
  'favorite_count': 23234,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Oct 27 20:09:02 +0000 2021',
  'id': 1453453706888982536,
  'id_str': '1453453706888982536',
  'full_text': 'Folks, @KamalaHarris is headed down to Norfolk this Friday to get out the vote with @TerryMcAuliffe. Register now to join them.\nhttps://t.co/mT9kMgfDFM',
  'truncated': False,
  'display_text_range': [0, 151],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'KamalaHarris',
     'name': 'Kamala Harris',
     'id': 30354991,
     'id_str': '30354991',
     'indices': [7, 20]},
    {'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [84, 99]}],
   'urls': [{'url': 'https://t.co/mT9kMgfDFM',
     'expanded_url': 'https://www.mobilize.us/terryforvirginia/event/424472/?utm_source=dncsocial',
     'display_url': 'mobilize.us/terryforvirgin…',
     'indices': [128, 151]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1002,
  'favorite_count': 4381,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Oct 27 15:11:00 +0000 2021',
  'id': 1453378707113009154,
  'id_str': '1453378707113009154',
  'full_text': 'Under my Build Back Better Agenda, no middle-class family will spend more than 7% of their income on child care.',
  'truncated': False,
  'display_text_range': [0, 112],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2813,
  'favorite_count': 22631,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 26 23:47:19 +0000 2021',
  'id': 1453146251810181122,
  'id_str': '1453146251810181122',
  'full_text': 'Tune in as I join @TerryMcAuliffe in Arlington to get out the vote.\n\nOne week to go, Virginia. Let’s do this. https://t.co/YDyLyUmLyd',
  'truncated': False,
  'display_text_range': [0, 133],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [18, 33]}],
   'urls': [{'url': 'https://t.co/YDyLyUmLyd',
     'expanded_url': 'https://twitter.com/i/broadcasts/1ZkKzbPLXkaKv',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [110, 133]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 864,
  'favorite_count': 4542,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 26 21:26:00 +0000 2021',
  'id': 1453110691045552135,
  'id_str': '1453110691045552135',
  'full_text': "It isn't enough just to invest in our physical infrastructure—we also have to invest in our people. \n\nThat’s what the Build Back Better Agenda does: Invests in child care, combats the climate crisis, and makes us competitive in the 21st century.",
  'truncated': False,
  'display_text_range': [0, 245],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2120,
  'favorite_count': 12905,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 26 20:48:00 +0000 2021',
  'id': 1453101128174952453,
  'id_str': '1453101128174952453',
  'full_text': 'The Build Back Better Agenda is about betting on America, believing in America, and believing in the American people.\nhttps://t.co/1KHD6ZbpHu',
  'truncated': False,
  'display_text_range': [0, 141],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1452810965939019793,
     'id_str': '1452810965939019793',
     'indices': [118, 141],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1452810965939019793/img/andmdl6Cg1VYjfH2.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1452810965939019793/img/andmdl6Cg1VYjfH2.jpg',
     'url': 'https://t.co/1KHD6ZbpHu',
     'display_url': 'pic.twitter.com/1KHD6ZbpHu',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1452811013879959553/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1452811013879959553,
     'source_status_id_str': '1452811013879959553',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1452810965939019793,
     'id_str': '1452810965939019793',
     'indices': [118, 141],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1452810965939019793/img/andmdl6Cg1VYjfH2.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1452810965939019793/img/andmdl6Cg1VYjfH2.jpg',
     'url': 'https://t.co/1KHD6ZbpHu',
     'display_url': 'pic.twitter.com/1KHD6ZbpHu',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1452811013879959553/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1452811013879959553,
     'source_status_id_str': '1452811013879959553',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 27986,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452810965939019793/vid/320x320/5ZMMWsb_tp_Ms7rO.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452810965939019793/vid/720x720/je9uOpQBET4mk88P.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452810965939019793/vid/540x540/yA-R9Lp016a2vcNr.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1452810965939019793/pl/PeIRjYTwx5y_ZPWc.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'title': 'Joe Biden: When we make these investments there can be no stopping America.',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 824,
  'favorite_count': 4995,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 26 19:50:01 +0000 2021',
  'id': 1453086533104320517,
  'id_str': '1453086533104320517',
  'full_text': "For too long, the backbone of this country—the middle class—has been dealt out. It's time to deal them back in.",
  'truncated': False,
  'display_text_range': [0, 111],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3906,
  'favorite_count': 31749,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 26 18:27:03 +0000 2021',
  'id': 1453065653171204099,
  'id_str': '1453065653171204099',
  'full_text': 'The Build Back Better Agenda and the Bipartisan Infrastructure Deal are about competitiveness versus complacency.\nhttps://t.co/J2ORJsyZti',
  'truncated': False,
  'display_text_range': [0, 137],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1452756912240480263,
     'id_str': '1452756912240480263',
     'indices': [114, 137],
     'media_url': 'http://pbs.twimg.com/media/FCk6w84WUAUGWKd.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCk6w84WUAUGWKd.jpg',
     'url': 'https://t.co/J2ORJsyZti',
     'display_url': 'pic.twitter.com/J2ORJsyZti',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1452756973003366401/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1452756973003366401,
     'source_status_id_str': '1452756973003366401',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1452756912240480263,
     'id_str': '1452756912240480263',
     'indices': [114, 137],
     'media_url': 'http://pbs.twimg.com/media/FCk6w84WUAUGWKd.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCk6w84WUAUGWKd.jpg',
     'url': 'https://t.co/J2ORJsyZti',
     'display_url': 'pic.twitter.com/J2ORJsyZti',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1452756973003366401/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1452756973003366401,
     'source_status_id_str': '1452756973003366401',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 25425,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452756912240480263/vid/540x540/EDQuRfzvMcJMunws.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452756912240480263/vid/320x320/cMWr7e_-Xxk0jEkc.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452756912240480263/vid/720x720/W61rNyAJZYbII4VB.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1452756912240480263/pl/-XEtCEv7ny86mC3l.m3u8?tag=14&container=fmp4'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 880,
  'favorite_count': 5468,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Oct 25 23:15:02 +0000 2021',
  'id': 1452775742471872524,
  'id_str': '1452775742471872524',
  'full_text': 'Folks, @TerryMcAuliffe has been here before, he knows what to do, and he knows how to deliver results for Virginia. \n\nJoin us for a campaign rally in Arlington tomorrow night. https://t.co/ZYbRaFa40N',
  'truncated': False,
  'display_text_range': [0, 199],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [7, 22]}],
   'urls': [{'url': 'https://t.co/ZYbRaFa40N',
     'expanded_url': 'https://www.mobilize.us/terryforvirginia/event/423747/?utm_source=dncsocial',
     'display_url': 'mobilize.us/terryforvirgin…',
     'indices': [176, 199]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1928,
  'favorite_count': 9127,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Oct 25 15:59:00 +0000 2021',
  'id': 1452666011350614020,
  'id_str': '1452666011350614020',
  'full_text': "At least 55 corporations in America didn't pay a single penny in federal income tax last year. That’s got to change—and my Build Back Better Agenda will get it done.",
  'truncated': False,
  'display_text_range': [0, 165],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5280,
  'favorite_count': 33063,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Oct 25 14:26:27 +0000 2021',
  'id': 1452642719470428174,
  'id_str': '1452642719470428174',
  'full_text': 'RT @POTUS: Today, I’m heading to New Jersey to highlight the need for my Build Back Better Agenda and Bipartisan Infrastructure Deal. This…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Oct 25 14:21:01 +0000 2021',
   'id': 1452641350927716359,
   'id_str': '1452641350927716359',
   'full_text': 'Today, I’m heading to New Jersey to highlight the need for my Build Back Better Agenda and Bipartisan Infrastructure Deal. This is our moment to invest in American families, revitalize our nation’s infrastructure, and win the competition for the 21st century.',
   'truncated': False,
   'display_text_range': [0, 259],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004745,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2599,
   'favorite_count': 18336,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2599,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 24 23:50:09 +0000 2021',
  'id': 1452422191958695945,
  'id_str': '1452422191958695945',
  'full_text': 'To make good on the full promise of America, we have to protect the fundamental and sacred right to vote. https://t.co/iExJiKeKyV',
  'truncated': False,
  'display_text_range': [0, 105],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1452422153857605632,
     'id_str': '1452422153857605632',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/FCgKSKLWYAUWILD.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCgKSKLWYAUWILD.jpg',
     'url': 'https://t.co/iExJiKeKyV',
     'display_url': 'pic.twitter.com/iExJiKeKyV',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1452422191958695945/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1452422153857605632,
     'id_str': '1452422153857605632',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/FCgKSKLWYAUWILD.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCgKSKLWYAUWILD.jpg',
     'url': 'https://t.co/iExJiKeKyV',
     'display_url': 'pic.twitter.com/iExJiKeKyV',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1452422191958695945/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 14556,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452422153857605632/vid/720x720/sg3BdVMqJPTvGWkD.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1452422153857605632/pl/2moodpZ2jZaMzimL.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452422153857605632/vid/540x540/pMjjsi3jV86vUS89.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1452422153857605632/vid/320x320/8_K6vD2s2wfNf7UJ.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Protecting the fundamental and sacred right to vote',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2019,
  'favorite_count': 12284,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 24 21:27:00 +0000 2021',
  'id': 1452386165416472578,
  'id_str': '1452386165416472578',
  'full_text': 'In just nine months, we have nominated more Black women to the federal circuit courts and more public defenders to the bench than any administration in all of American history. \n\nAnd we’re just getting started.',
  'truncated': False,
  'display_text_range': [0, 210],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5781,
  'favorite_count': 46694,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 24 15:13:03 +0000 2021',
  'id': 1452292057930911751,
  'id_str': '1452292057930911751',
  'full_text': "The last four years, every month was infrastructure month. But nothing happened. \n\nWe can't afford to sit while other countries pass us by.\nhttps://t.co/flOouuGsLU",
  'truncated': False,
  'display_text_range': [0, 163],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1451171918137204743,
     'id_str': '1451171918137204743',
     'indices': [140, 163],
     'media_url': 'http://pbs.twimg.com/media/FCOZMU5X0AAsbHn.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCOZMU5X0AAsbHn.jpg',
     'url': 'https://t.co/flOouuGsLU',
     'display_url': 'pic.twitter.com/flOouuGsLU',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451171946775949316/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451171946775949316,
     'source_status_id_str': '1451171946775949316',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1451171918137204743,
     'id_str': '1451171918137204743',
     'indices': [140, 163],
     'media_url': 'http://pbs.twimg.com/media/FCOZMU5X0AAsbHn.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCOZMU5X0AAsbHn.jpg',
     'url': 'https://t.co/flOouuGsLU',
     'display_url': 'pic.twitter.com/flOouuGsLU',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451171946775949316/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451171946775949316,
     'source_status_id_str': '1451171946775949316',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 19753,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451171918137204743/vid/320x320/Qiti6gHhUxIo1r0L.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1451171918137204743/pl/rzYyG9W-_XjBNSR1.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451171918137204743/vid/720x720/c1aYQfLVZEDTjE4n.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451171918137204743/vid/540x540/-uWSme3pLwiibGg_.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Joe Biden in Scranton, PA',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1593,
  'favorite_count': 10385,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 23 20:23:00 +0000 2021',
  'id': 1452007673067606018,
  'id_str': '1452007673067606018',
  'full_text': 'The struggle for our democracy is no longer just about who gets to vote. It’s about who counts the votes—and whether they should count at all. \n\nJim Crow is alive and well in the 21st century.\nhttps://t.co/ErmdUltVfa',
  'truncated': False,
  'display_text_range': [0, 216],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1451578346878476288,
     'id_str': '1451578346878476288',
     'indices': [193, 216],
     'media_url': 'http://pbs.twimg.com/media/FCUK3FuWYAQrACS.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCUK3FuWYAQrACS.jpg',
     'url': 'https://t.co/ErmdUltVfa',
     'display_url': 'pic.twitter.com/ErmdUltVfa',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451578401509322762/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451578401509322762,
     'source_status_id_str': '1451578401509322762',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1451578346878476288,
     'id_str': '1451578346878476288',
     'indices': [193, 216],
     'media_url': 'http://pbs.twimg.com/media/FCUK3FuWYAQrACS.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCUK3FuWYAQrACS.jpg',
     'url': 'https://t.co/ErmdUltVfa',
     'display_url': 'pic.twitter.com/ErmdUltVfa',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451578401509322762/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451578401509322762,
     'source_status_id_str': '1451578401509322762',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 22188,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451578346878476288/vid/720x720/mvc3N8Pr51HeOdyy.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1451578346878476288/pl/y3FtlJ-3uEWZprEC.m3u8?tag=14&container=fmp4'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451578346878476288/vid/540x540/DeXh7vnm8a-SYBEF.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451578346878476288/vid/320x320/lctwf2fm30QMWBoZ.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2764,
  'favorite_count': 12908,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 23 18:25:55 +0000 2021',
  'id': 1451978204328173572,
  'id_str': '1451978204328173572',
  'full_text': 'RT @TheDemocrats: HAPPENING NOW: President @BarackObama is in Richmond with @TerryMcAuliffe to help get out the vote in Virginia! Tune in:…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TheDemocrats',
     'name': 'The Democrats',
     'id': 14377605,
     'id_str': '14377605',
     'indices': [3, 16]},
    {'screen_name': 'BarackObama',
     'name': 'Barack Obama',
     'id': 813286,
     'id_str': '813286',
     'indices': [43, 55]},
    {'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [76, 91]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Oct 23 18:25:36 +0000 2021',
   'id': 1451978125949247491,
   'id_str': '1451978125949247491',
   'full_text': 'HAPPENING NOW: President @BarackObama is in Richmond with @TerryMcAuliffe to help get out the vote in Virginia! Tune in: https://t.co/B0aVcueeJc',
   'truncated': False,
   'display_text_range': [0, 144],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'BarackObama',
      'name': 'Barack Obama',
      'id': 813286,
      'id_str': '813286',
      'indices': [25, 37]},
     {'screen_name': 'TerryMcAuliffe',
      'name': 'Terry McAuliffe',
      'id': 19471123,
      'id_str': '19471123',
      'indices': [58, 73]}],
    'urls': [{'url': 'https://t.co/B0aVcueeJc',
      'expanded_url': 'https://twitter.com/i/broadcasts/1gqxvleRwWjGB',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [121, 144]}]},
   'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 14377605,
    'id_str': '14377605',
    'name': 'The Democrats',
    'screen_name': 'TheDemocrats',
    'location': 'Washington, D.C.',
    'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
    'url': 'https://t.co/uyjMGErQPD',
    'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
        'expanded_url': 'http://democrats.org',
        'display_url': 'democrats.org',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 2254664,
    'friends_count': 73,
    'listed_count': 12529,
    'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
    'favourites_count': 1234,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': True,
    'verified': True,
    'statuses_count': 37398,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': '00AEF3',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': True,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
    'profile_link_color': '016FD0',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': 'EFF0F1',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': False,
    'default_profile': False,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 618,
   'favorite_count': 2666,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 618,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 23 15:26:00 +0000 2021',
  'id': 1451932930222305280,
  'id_str': '1451932930222305280',
  'full_text': 'When I ran for president, I resolved to bring Scranton values to bear.\n\nWe’re going to build the economy from the ground up and the middle out, not from the top down.\nhttps://t.co/dAs96r22fc',
  'truncated': False,
  'display_text_range': [0, 190],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1450983428271259656,
     'id_str': '1450983428271259656',
     'indices': [167, 190],
     'media_url': 'http://pbs.twimg.com/media/FCLtxpaWYAAiRDh.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCLtxpaWYAAiRDh.jpg',
     'url': 'https://t.co/dAs96r22fc',
     'display_url': 'pic.twitter.com/dAs96r22fc',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1450983471170691075/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1450983471170691075,
     'source_status_id_str': '1450983471170691075',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1450983428271259656,
     'id_str': '1450983428271259656',
     'indices': [167, 190],
     'media_url': 'http://pbs.twimg.com/media/FCLtxpaWYAAiRDh.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCLtxpaWYAAiRDh.jpg',
     'url': 'https://t.co/dAs96r22fc',
     'display_url': 'pic.twitter.com/dAs96r22fc',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1450983471170691075/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1450983471170691075,
     'source_status_id_str': '1450983471170691075',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 26401,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1450983428271259656/vid/320x320/zKOP6_U6BsUCWQ2H.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1450983428271259656/vid/540x540/FaghPudTwWvzVlPU.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1450983428271259656/pl/UvUfDpjafaVetmYz.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1450983428271259656/vid/720x720/TSW1-9wRm-Yx04ft.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1177,
  'favorite_count': 8470,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 23 00:28:00 +0000 2021',
  'id': 1451706940736819206,
  'id_str': '1451706940736819206',
  'full_text': 'Having a broken spirit is no different than having a broken arm.\nhttps://t.co/VSmOQtQ3RX',
  'truncated': False,
  'display_text_range': [0, 88],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1451377772497186821,
     'id_str': '1451377772497186821',
     'indices': [65, 88],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1451377772497186821/img/zel4EWM2Amjkhdqu.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1451377772497186821/img/zel4EWM2Amjkhdqu.jpg',
     'url': 'https://t.co/VSmOQtQ3RX',
     'display_url': 'pic.twitter.com/VSmOQtQ3RX',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451377807884525576/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451377807884525576,
     'source_status_id_str': '1451377807884525576',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1451377772497186821,
     'id_str': '1451377772497186821',
     'indices': [65, 88],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1451377772497186821/img/zel4EWM2Amjkhdqu.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1451377772497186821/img/zel4EWM2Amjkhdqu.jpg',
     'url': 'https://t.co/VSmOQtQ3RX',
     'display_url': 'pic.twitter.com/VSmOQtQ3RX',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451377807884525576/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451377807884525576,
     'source_status_id_str': '1451377807884525576',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 25500,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451377772497186821/vid/540x540/5CbB_IXxjZIQzhD6.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1451377772497186821/pl/8epycp9z52jzhrC1.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451377772497186821/vid/320x320/b30OAWADE7Ip4ezZ.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451377772497186821/vid/720x720/qMlxtLD95pVer3oz.mp4?tag=14'}]},
     'additional_media_info': {'title': "President Biden: If you have a broken spirit, it's no different than a broken arm",
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1838,
  'favorite_count': 13275,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 22 19:10:01 +0000 2021',
  'id': 1451626914570031107,
  'id_str': '1451626914570031107',
  'full_text': 'Universal pre-K for 3- and 4-year-olds is not just an investment in education, it’s an investment in the future of America. \n\nWe’re going to get it done with the Build Back Better Agenda.\nhttps://t.co/FR3mzzbb4A',
  'truncated': False,
  'display_text_range': [0, 211],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1451354230988709888,
     'id_str': '1451354230988709888',
     'indices': [188, 211],
     'media_url': 'http://pbs.twimg.com/media/FCQ_AwcXoAgrI1W.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCQ_AwcXoAgrI1W.jpg',
     'url': 'https://t.co/FR3mzzbb4A',
     'display_url': 'pic.twitter.com/FR3mzzbb4A',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451354267542073346/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451354267542073346,
     'source_status_id_str': '1451354267542073346',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1451354230988709888,
     'id_str': '1451354230988709888',
     'indices': [188, 211],
     'media_url': 'http://pbs.twimg.com/media/FCQ_AwcXoAgrI1W.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCQ_AwcXoAgrI1W.jpg',
     'url': 'https://t.co/FR3mzzbb4A',
     'display_url': 'pic.twitter.com/FR3mzzbb4A',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451354267542073346/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451354267542073346,
     'source_status_id_str': '1451354267542073346',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 13913,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451354230988709888/vid/320x320/SM5aXV1RcJROFf7K.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1451354230988709888/pl/FDY8SljRNpVxMot3.m3u8?tag=14&container=fmp4'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451354230988709888/vid/720x720/MqNVbWSggEys6Vr6.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451354230988709888/vid/540x540/Z2SQhgGzj75teQt7.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 918,
  'favorite_count': 6002,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 22 18:00:37 +0000 2021',
  'id': 1451609449823670290,
  'id_str': '1451609449823670290',
  'full_text': 'RT @POTUS: Compromise has become a dirty word – but bipartisan compromise is still possible. \n\nI’m going to see it through. https://t.co/6c…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Oct 22 16:30:26 +0000 2021',
   'id': 1451586755673694223,
   'id_str': '1451586755673694223',
   'full_text': 'Compromise has become a dirty word – but bipartisan compromise is still possible. \n\nI’m going to see it through. https://t.co/6cDhri0Ivg',
   'truncated': False,
   'display_text_range': [0, 112],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1451586681409347603,
      'id_str': '1451586681409347603',
      'indices': [113, 136],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1451586681409347603/img/g0mYlfCuTtic_1Jg.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1451586681409347603/img/g0mYlfCuTtic_1Jg.jpg',
      'url': 'https://t.co/6cDhri0Ivg',
      'display_url': 'pic.twitter.com/6cDhri0Ivg',
      'expanded_url': 'https://twitter.com/POTUS/status/1451586755673694223/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1451586681409347603,
      'id_str': '1451586681409347603',
      'indices': [113, 136],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1451586681409347603/img/g0mYlfCuTtic_1Jg.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1451586681409347603/img/g0mYlfCuTtic_1Jg.jpg',
      'url': 'https://t.co/6cDhri0Ivg',
      'display_url': 'pic.twitter.com/6cDhri0Ivg',
      'expanded_url': 'https://twitter.com/POTUS/status/1451586755673694223/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 20562,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1451586681409347603/vid/320x320/pH82HEgJhaeoc_HZ.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1451586681409347603/pl/N62Z7LSlQyiUcY3s.m3u8?tag=14&container=fmp4'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1451586681409347603/vid/540x540/vYaoAJqNd_c3Iq4b.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1451586681409347603/vid/720x720/Py8yUQrjYqdETida.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1261,
   'favorite_count': 7369,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1261,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 22 17:11:05 +0000 2021',
  'id': 1451596987644665856,
  'id_str': '1451596987644665856',
  'full_text': 'Climate change is an existential threat to humanity.\n\nThat’s why I’m making a commitment to get to net-zero emissions on electric power by 2035 and net-zero emissions across the board by 2050 or before.',
  'truncated': False,
  'display_text_range': [0, 202],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3181,
  'favorite_count': 24976,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 22 15:11:01 +0000 2021',
  'id': 1451566771245391892,
  'id_str': '1451566771245391892',
  'full_text': 'It’s time corporate America and the super-wealthy start paying their fair share.\nhttps://t.co/rjErYTQKqk',
  'truncated': False,
  'display_text_range': [0, 104],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1451350394748260358,
     'id_str': '1451350394748260358',
     'indices': [81, 104],
     'media_url': 'http://pbs.twimg.com/media/FCQ7hPrXIAYAJgh.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCQ7hPrXIAYAJgh.jpg',
     'url': 'https://t.co/rjErYTQKqk',
     'display_url': 'pic.twitter.com/rjErYTQKqk',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451350427149164557/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451350427149164557,
     'source_status_id_str': '1451350427149164557',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1451350394748260358,
     'id_str': '1451350394748260358',
     'indices': [81, 104],
     'media_url': 'http://pbs.twimg.com/media/FCQ7hPrXIAYAJgh.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FCQ7hPrXIAYAJgh.jpg',
     'url': 'https://t.co/rjErYTQKqk',
     'display_url': 'pic.twitter.com/rjErYTQKqk',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1451350427149164557/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1451350427149164557,
     'source_status_id_str': '1451350427149164557',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 20500,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1451350394748260358/pl/p32kEEdvT4F-wNd1.m3u8?tag=14&container=fmp4'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451350394748260358/vid/320x320/OfIYMp-YKJZmR5dL.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451350394748260358/vid/540x540/PaN7MZQ7NQELeAkj.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1451350394748260358/vid/720x720/B1WcZYh4GXAwonUw.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1621,
  'favorite_count': 9942,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 22 03:16:00 +0000 2021',
  'id': 1451386830994255902,
  'id_str': '1451386830994255902',
  'full_text': 'I ran for president for three reasons:\nTo restore the soul and decency of our country. \nTo rebuild our economy from the bottom up and the middle out. \nAnd to help unite our country.\n\nWe’re on the right track—but there’s still work to be done.',
  'truncated': False,
  'display_text_range': [0, 242],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6297,
  'favorite_count': 57255,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Oct 20 19:02:18 +0000 2021',
  'id': 1450900197043757058,
  'id_str': '1450900197043757058',
  'full_text': 'RT @POTUS: The sacred right to vote is under unrelenting assault across the country — and the Senate needs to take action to protect it. Se…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Oct 20 19:01:40 +0000 2021',
   'id': 1450900038528475136,
   'id_str': '1450900038528475136',
   'full_text': 'The sacred right to vote is under unrelenting assault across the country — and the Senate needs to take action to protect it. Senate Republicans need to allow a debate and let there be a vote on the Freedom to Vote Act. Democracy — the very soul of America — is at stake.',
   'truncated': False,
   'display_text_range': [0, 271],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2518,
   'favorite_count': 11058,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2518,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 19 14:40:18 +0000 2021',
  'id': 1450471875382059018,
  'id_str': '1450471875382059018',
  'full_text': 'Building back better starts in the states. Since flipping the legislature in 2019, Virginia Democrats have been a model of progress—including helping us vaccinate folks to beat the pandemic. To keep our progress, we must elect @TerryMcAuliffe and Democrats up and down the ballot. https://t.co/NsJiiPNzlv',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [227, 242]}],
   'urls': [],
   'media': [{'id': 1450471870709616646,
     'id_str': '1450471870709616646',
     'indices': [281, 304],
     'media_url': 'http://pbs.twimg.com/media/FCEce0JX0AY_zt_.png',
     'media_url_https': 'https://pbs.twimg.com/media/FCEce0JX0AY_zt_.png',
     'url': 'https://t.co/NsJiiPNzlv',
     'display_url': 'pic.twitter.com/NsJiiPNzlv',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1450471875382059018/photo/1',
     'type': 'photo',
     'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'large': {'w': 1200, 'h': 1200, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1450471870709616646,
     'id_str': '1450471870709616646',
     'indices': [281, 304],
     'media_url': 'http://pbs.twimg.com/media/FCEce0JX0AY_zt_.png',
     'media_url_https': 'https://pbs.twimg.com/media/FCEce0JX0AY_zt_.png',
     'url': 'https://t.co/NsJiiPNzlv',
     'display_url': 'pic.twitter.com/NsJiiPNzlv',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1450471875382059018/photo/1',
     'type': 'photo',
     'sizes': {'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'large': {'w': 1200, 'h': 1200, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1948,
  'favorite_count': 7760,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Oct 18 20:54:00 +0000 2021',
  'id': 1450203535065460742,
  'id_str': '1450203535065460742',
  'full_text': 'For the better part of the 20th century, America led the world in investments in ourselves, in our people, in our country. But now, we risk losing our edge as a nation. Passing the Build Back Better Agenda will help us regain the momentum that we’ve lost.',
  'truncated': False,
  'display_text_range': [0, 255],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2657,
  'favorite_count': 17625,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Oct 18 18:36:05 +0000 2021',
  'id': 1450168825790541830,
  'id_str': '1450168825790541830',
  'full_text': 'RT @POTUS: Jill and I are deeply saddened by the passing of our dear friend and a patriot of unmatched honor and dignity, General Colin Pow…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Oct 18 18:31:54 +0000 2021',
   'id': 1450167773401866245,
   'id_str': '1450167773401866245',
   'full_text': 'Jill and I are deeply saddened by the passing of our dear friend and a patriot of unmatched honor and dignity, General Colin Powell. Time and again, he put country before self, before party, before all else—in uniform and out. He will be remembered as one of our great Americans.',
   'truncated': False,
   'display_text_range': [0, 279],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6413,
   'favorite_count': 56029,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6413,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Oct 18 17:16:01 +0000 2021',
  'id': 1450148676899418118,
  'id_str': '1450148676899418118',
  'full_text': 'Folks, Virginia has an important election coming up on November 2 and we need your help reaching out to voters across the state to get out the vote. Sign up today to join a phone bank: https://t.co/FGrVXHp748',
  'truncated': False,
  'display_text_range': [0, 208],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/FGrVXHp748',
     'expanded_url': 'https://events.democrats.org/event/416729/?utm_source=social-jrb',
     'display_url': 'events.democrats.org/event/416729/?…',
     'indices': [185, 208]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2029,
  'favorite_count': 6806,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 17 23:58:00 +0000 2021',
  'id': 1449887450676056075,
  'id_str': '1449887450676056075',
  'full_text': 'A teacher shouldn’t pay a higher tax rate than a profitable company. It’s time we reward work in this country—not just wealth.',
  'truncated': False,
  'display_text_range': [0, 126],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 10342,
  'favorite_count': 91895,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 17 20:11:01 +0000 2021',
  'id': 1449830326566625290,
  'id_str': '1449830326566625290',
  'full_text': 'Passing the Build Back Better Agenda is about competitiveness versus complacency.\nOpportunity versus decay.  \nLeading the world or letting the world pass us by.\n\nWhen workers and families have a better shot, America has a better shot.',
  'truncated': False,
  'display_text_range': [0, 234],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2089,
  'favorite_count': 12257,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 17 15:48:08 +0000 2021',
  'id': 1449764172619730951,
  'id_str': '1449764172619730951',
  'full_text': "The 21st century Jim Crow assault is real. It's unrelenting, and we're going to challenge it vigorously. https://t.co/jGkrvWB5Ev",
  'truncated': False,
  'display_text_range': [0, 104],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1449764141145772036,
     'id_str': '1449764141145772036',
     'indices': [105, 128],
     'media_url': 'http://pbs.twimg.com/media/FB6Y1FfXEAU3dy4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FB6Y1FfXEAU3dy4.jpg',
     'url': 'https://t.co/jGkrvWB5Ev',
     'display_url': 'pic.twitter.com/jGkrvWB5Ev',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1449764172619730951/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1449764141145772036,
     'id_str': '1449764141145772036',
     'indices': [105, 128],
     'media_url': 'http://pbs.twimg.com/media/FB6Y1FfXEAU3dy4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FB6Y1FfXEAU3dy4.jpg',
     'url': 'https://t.co/jGkrvWB5Ev',
     'display_url': 'pic.twitter.com/jGkrvWB5Ev',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1449764172619730951/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 18519,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449764141145772036/vid/320x320/QzZWLH1QFhsJlscG.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1449764141145772036/pl/mLvKtB54xlwClEZt.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449764141145772036/vid/540x540/LrDxGmOQwFlt5YQa.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449764141145772036/vid/720x720/AQKcAVjWITugFof6.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Joe Biden: Protecting the sacred right to vote',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3268,
  'favorite_count': 15637,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 16 23:51:00 +0000 2021',
  'id': 1449523302104457217,
  'id_str': '1449523302104457217',
  'full_text': 'It’s time to build an economy that works for working families. An economy where people from every race, background, and religion can get ahead.\n\nOur Build Back Better Agenda will get it done.',
  'truncated': False,
  'display_text_range': [0, 191],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3324,
  'favorite_count': 25333,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 16 21:13:01 +0000 2021',
  'id': 1449483543965544453,
  'id_str': '1449483543965544453',
  'full_text': 'The voter registration deadline is coming up in several states. Make sure you’re registered to vote at https://t.co/Hy8C4mIL2M and vote for Democrats up and down the ballot to keep America moving forward. https://t.co/c9DiEScQon',
  'truncated': False,
  'display_text_range': [0, 204],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/Hy8C4mIL2M',
     'expanded_url': 'http://IWillVote.com',
     'display_url': 'IWillVote.com',
     'indices': [103, 126]}],
   'media': [{'id': 1449483541478354952,
     'id_str': '1449483541478354952',
     'indices': [205, 228],
     'media_url': 'http://pbs.twimg.com/media/FB2Zme2XsAg2Ja7.png',
     'media_url_https': 'https://pbs.twimg.com/media/FB2Zme2XsAg2Ja7.png',
     'url': 'https://t.co/c9DiEScQon',
     'display_url': 'pic.twitter.com/c9DiEScQon',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1449483543965544453/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
  'extended_entities': {'media': [{'id': 1449483541478354952,
     'id_str': '1449483541478354952',
     'indices': [205, 228],
     'media_url': 'http://pbs.twimg.com/media/FB2Zme2XsAg2Ja7.png',
     'media_url_https': 'https://pbs.twimg.com/media/FB2Zme2XsAg2Ja7.png',
     'url': 'https://t.co/c9DiEScQon',
     'display_url': 'pic.twitter.com/c9DiEScQon',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1449483543965544453/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2171,
  'favorite_count': 7421,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 16 20:37:17 +0000 2021',
  'id': 1449474551725928455,
  'id_str': '1449474551725928455',
  'full_text': 'RT @POTUS: To everyone at today’s National Peace Officers’ Memorial Service: Your loss is our nation’s loss. Your pain is our nation’s pain…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Oct 16 20:36:44 +0000 2021',
   'id': 1449474413506842624,
   'id_str': '1449474413506842624',
   'full_text': 'To everyone at today’s National Peace Officers’ Memorial Service: Your loss is our nation’s loss. Your pain is our nation’s pain. May the souls of those you love — and those with whom you have served — rest in peace and rise in glory. https://t.co/Ww5alp3vft',
   'truncated': False,
   'display_text_range': [0, 234],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1449474410273021953,
      'id_str': '1449474410273021953',
      'indices': [235, 258],
      'media_url': 'http://pbs.twimg.com/media/FB2RS-dXoAEWNib.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FB2RS-dXoAEWNib.jpg',
      'url': 'https://t.co/Ww5alp3vft',
      'display_url': 'pic.twitter.com/Ww5alp3vft',
      'expanded_url': 'https://twitter.com/POTUS/status/1449474413506842624/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1125, 'h': 774, 'resize': 'fit'},
       'large': {'w': 1125, 'h': 774, 'resize': 'fit'},
       'small': {'w': 680, 'h': 468, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1449474410273021953,
      'id_str': '1449474410273021953',
      'indices': [235, 258],
      'media_url': 'http://pbs.twimg.com/media/FB2RS-dXoAEWNib.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FB2RS-dXoAEWNib.jpg',
      'url': 'https://t.co/Ww5alp3vft',
      'display_url': 'pic.twitter.com/Ww5alp3vft',
      'expanded_url': 'https://twitter.com/POTUS/status/1449474413506842624/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1125, 'h': 774, 'resize': 'fit'},
       'large': {'w': 1125, 'h': 774, 'resize': 'fit'},
       'small': {'w': 680, 'h': 468, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2435,
   'favorite_count': 17642,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2435,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 16 01:20:00 +0000 2021',
  'id': 1449183311121760259,
  'id_str': '1449183311121760259',
  'full_text': 'With the expanded Child Tax Credit, working families are getting the relief they need thanks to the American Rescue Plan. \n\nThis money is making a difference for countless Americans and lifting millions of kids out of poverty.',
  'truncated': False,
  'display_text_range': [0, 226],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2099,
  'favorite_count': 14944,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 16 00:30:01 +0000 2021',
  'id': 1449170733561692160,
  'id_str': '1449170733561692160',
  'full_text': 'Today, another round of payments from the expanded Child Tax Credit will help millions of families across the country with payments of up to $300 per child. \n\nThis is just the first step. Our Build Back Better Agenda will extend this benefit for years to come.',
  'truncated': False,
  'display_text_range': [0, 260],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1797,
  'favorite_count': 11936,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 15 23:52:00 +0000 2021',
  'id': 1449161163707588615,
  'id_str': '1449161163707588615',
  'full_text': 'The evidence is clear: Vaccination requirements work. https://t.co/aODppNEa7F',
  'truncated': False,
  'display_text_range': [0, 53],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1449071828492750860,
     'id_str': '1449071828492750860',
     'indices': [54, 77],
     'media_url': 'http://pbs.twimg.com/media/FBwjLFhXEAYY_0f.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBwjLFhXEAYY_0f.jpg',
     'url': 'https://t.co/aODppNEa7F',
     'display_url': 'pic.twitter.com/aODppNEa7F',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1449161163707588615/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1449071828492750860,
     'id_str': '1449071828492750860',
     'indices': [54, 77],
     'media_url': 'http://pbs.twimg.com/media/FBwjLFhXEAYY_0f.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBwjLFhXEAYY_0f.jpg',
     'url': 'https://t.co/aODppNEa7F',
     'display_url': 'pic.twitter.com/aODppNEa7F',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1449161163707588615/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 34334,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1449071828492750860/pl/aPj18fxUCMKCZebd.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449071828492750860/vid/320x320/px4Vop9VjvlNy4Lt.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449071828492750860/vid/540x540/QQrEnKy84l1RLDn7.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449071828492750860/vid/720x720/u4HAlPzmb1LEFgz9.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Vaccine Requirements Work',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1607,
  'favorite_count': 10702,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 15 19:14:01 +0000 2021',
  'id': 1449091208836489218,
  'id_str': '1449091208836489218',
  'full_text': 'More than 1 out of 3 eligible seniors have already received their COVID-19 booster. \n\nWe’re going to continue to provide that protection to seniors and everyone else as we head into the holiday season. Together, we can put this pandemic behind us.',
  'truncated': False,
  'display_text_range': [0, 247],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1262,
  'favorite_count': 9881,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 15 14:02:17 +0000 2021',
  'id': 1449012757362315265,
  'id_str': '1449012757362315265',
  'full_text': 'A promise I didn’t take lightly. https://t.co/rkmkGRIUVi',
  'truncated': False,
  'display_text_range': [0, 32],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1449011474232397824,
     'id_str': '1449011474232397824',
     'indices': [33, 56],
     'media_url': 'http://pbs.twimg.com/media/FBvtOvaWYAQGhqW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBvtOvaWYAQGhqW.jpg',
     'url': 'https://t.co/rkmkGRIUVi',
     'display_url': 'pic.twitter.com/rkmkGRIUVi',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1449012757362315265/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1449011474232397824,
     'id_str': '1449011474232397824',
     'indices': [33, 56],
     'media_url': 'http://pbs.twimg.com/media/FBvtOvaWYAQGhqW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBvtOvaWYAQGhqW.jpg',
     'url': 'https://t.co/rkmkGRIUVi',
     'display_url': 'pic.twitter.com/rkmkGRIUVi',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1449012757362315265/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 53186,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1449011474232397824/pl/17n5UlDkixuzXC91.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449011474232397824/vid/320x320/OW7Y503mZkzKcyuC.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449011474232397824/vid/720x720/9RPsRsG7fItch8dc.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1449011474232397824/vid/540x540/JNegoIuUUep8gHJ9.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2999,
  'favorite_count': 23432,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 14 23:15:00 +0000 2021',
  'id': 1448789464650862594,
  'id_str': '1448789464650862594',
  'full_text': 'Our plan to accelerate a path out of this pandemic is working. https://t.co/HodK4Y7glV',
  'truncated': False,
  'display_text_range': [0, 62],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1448772355120148486,
     'id_str': '1448772355120148486',
     'indices': [63, 86],
     'media_url': 'http://pbs.twimg.com/media/FBsS1AiX0AIplTJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBsS1AiX0AIplTJ.jpg',
     'url': 'https://t.co/HodK4Y7glV',
     'display_url': 'pic.twitter.com/HodK4Y7glV',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1448789464650862594/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1448772355120148486,
     'id_str': '1448772355120148486',
     'indices': [63, 86],
     'media_url': 'http://pbs.twimg.com/media/FBsS1AiX0AIplTJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBsS1AiX0AIplTJ.jpg',
     'url': 'https://t.co/HodK4Y7glV',
     'display_url': 'pic.twitter.com/HodK4Y7glV',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1448789464650862594/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 47681,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1448772355120148486/vid/320x320/k6YiD2U4qOkP93uo.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1448772355120148486/pl/LCIwNpK6IDi8sY-B.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1448772355120148486/vid/540x540/3z-E-cYaHt4ex8Ob.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1448772355120148486/vid/720x720/UEx7GtIUUPbS6MXE.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Making progress on COVID-19',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1583,
  'favorite_count': 11181,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 14 14:25:01 +0000 2021',
  'id': 1448656090221006862,
  'id_str': '1448656090221006862',
  'full_text': 'Tomorrow, @DrBiden is back on the campaign trail for a grassroots event with @TerryMcAuliffe.\n\nVirginia, you’re not going to find anyone who knows how to get more done than Terry. Let’s keep moving Virginia forward. RSVP now. \nhttps://t.co/V2t07vgPmp',
  'truncated': False,
  'display_text_range': [0, 250],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'DrBiden',
     'name': 'Dr. Jill Biden',
     'id': 821784477076750338,
     'id_str': '821784477076750338',
     'indices': [10, 18]},
    {'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [77, 92]}],
   'urls': [{'url': 'https://t.co/V2t07vgPmp',
     'expanded_url': 'https://www.mobilize.us/terryforvirginia/event/421516/?utm_source=dncsocial',
     'display_url': 'mobilize.us/terryforvirgin…',
     'indices': [227, 250]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1081,
  'favorite_count': 6598,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Oct 13 20:46:45 +0000 2021',
  'id': 1448389770313441287,
  'id_str': '1448389770313441287',
  'full_text': 'RT @POTUS: After working closely with my team, the Port of Los Angeles is announcing today that it will begin operating 24 hours 7 days a w…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Oct 13 20:18:41 +0000 2021',
   'id': 1448382707084451849,
   'id_str': '1448382707084451849',
   'full_text': 'After working closely with my team, the Port of Los Angeles is announcing today that it will begin operating 24 hours 7 days a week — which follows the Port of Long Beach’s commitment.\n\nA 24/7 system is what most of the leading countries operate on. Except us. Until now.',
   'truncated': False,
   'display_text_range': [0, 271],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4069,
   'favorite_count': 25485,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4069,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 12 21:34:00 +0000 2021',
  'id': 1448039273517797384,
  'id_str': '1448039273517797384',
  'full_text': 'Folks, it’s been a month since I laid out my plan to accelerate the path out of this pandemic. We’ve made real progress, but we still have a long way to go.\n\nThere’s no better way to beat this pandemic than to get the vast majority of Americans vaccinated. It’s as simple as that.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4401,
  'favorite_count': 30684,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 12 14:35:01 +0000 2021',
  'id': 1447933833521897476,
  'id_str': '1447933833521897476',
  'full_text': "Virginia: Last year, the people voted and democracy prevailed. We have to do it again and elect @TerryMcAuliffe as governor.\n\nToday is the last day to register to vote. Head to https://t.co/rqHXR7xuqW and make sure you're registered.",
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [96, 111]}],
   'urls': [{'url': 'https://t.co/rqHXR7xuqW',
     'expanded_url': 'http://IWillVote.com/VA',
     'display_url': 'IWillVote.com/VA',
     'indices': [177, 200]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3009,
  'favorite_count': 13005,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 10 23:58:00 +0000 2021',
  'id': 1447350735700742146,
  'id_str': '1447350735700742146',
  'full_text': 'For the first time since March 2020, the unemployment rate is below 5%. We still have more work to do, but recovery is moving forward even in the face of a pandemic.',
  'truncated': False,
  'display_text_range': [0, 165],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4644,
  'favorite_count': 38845,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 10 20:49:00 +0000 2021',
  'id': 1447303172427497481,
  'id_str': '1447303172427497481',
  'full_text': 'We have a plan. We have the tools. Let’s finish the job—get vaccinated.\nhttps://t.co/b8jlTuDMTm',
  'truncated': False,
  'display_text_range': [0, 95],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1446467416783982620,
     'id_str': '1446467416783982620',
     'indices': [72, 95],
     'media_url': 'http://pbs.twimg.com/media/FBLieOeWEBIvwkV.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBLieOeWEBIvwkV.jpg',
     'url': 'https://t.co/b8jlTuDMTm',
     'display_url': 'pic.twitter.com/b8jlTuDMTm',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1446467444982288412/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1446467444982288412,
     'source_status_id_str': '1446467444982288412',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1446467416783982620,
     'id_str': '1446467416783982620',
     'indices': [72, 95],
     'media_url': 'http://pbs.twimg.com/media/FBLieOeWEBIvwkV.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBLieOeWEBIvwkV.jpg',
     'url': 'https://t.co/b8jlTuDMTm',
     'display_url': 'pic.twitter.com/b8jlTuDMTm',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1446467444982288412/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1446467444982288412,
     'source_status_id_str': '1446467444982288412',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 18727,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446467416783982620/vid/320x320/Se8RDc7yvciKEMOz.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446467416783982620/vid/540x540/hDt7AGsOtPeWEwFT.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1446467416783982620/pl/PTCRgIYasikzfBU8.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446467416783982620/vid/720x720/CfxK686wpmkgw8pV.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2148,
  'favorite_count': 13664,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Oct 10 15:38:00 +0000 2021',
  'id': 1447224907079856129,
  'id_str': '1447224907079856129',
  'full_text': 'An average of 600,000 new jobs have been created every month since we took office. \n\nJobs are up, wages are up, and unemployment is down. This progress is attributed to the hard work and resilience of the American people, who are battling through this pandemic.',
  'truncated': False,
  'display_text_range': [0, 261],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2999,
  'favorite_count': 20207,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 09 23:34:00 +0000 2021',
  'id': 1446982308314165252,
  'id_str': '1446982308314165252',
  'full_text': 'Let’s set one thing straight: The Bipartisan Infrastructure Deal and the Build Back Better Agenda are not about left versus right.\n\nThey’re about leading the world or continuing to let the world pass us by.',
  'truncated': False,
  'display_text_range': [0, 206],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5627,
  'favorite_count': 36202,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 09 21:08:01 +0000 2021',
  'id': 1446945570753589254,
  'id_str': '1446945570753589254',
  'full_text': 'Before the American Rescue Plan passed, the Congressional Budget Office projected that it would take until 2023 to get to a 4.8% unemployment rate.\n\nWe hit that rate in October of 2021.',
  'truncated': False,
  'display_text_range': [0, 185],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3487,
  'favorite_count': 20274,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 09 16:35:00 +0000 2021',
  'id': 1446876864342110210,
  'id_str': '1446876864342110210',
  'full_text': "Here's the deal. Vaccine requirements are already proving that they work.\n\nMore than 185 million Americans are now fully vaccinated and more than 75% of eligible Americans have gotten at least one shot. That’s real progress.",
  'truncated': False,
  'display_text_range': [0, 224],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4137,
  'favorite_count': 33878,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 09 00:33:00 +0000 2021',
  'id': 1446634769048121345,
  'id_str': '1446634769048121345',
  'full_text': "Let’s be clear: Vaccine requirements aren't about politics, they’re about saving lives.\nhttps://t.co/LizrAytwGZ",
  'truncated': False,
  'display_text_range': [0, 111],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1446251244075507717,
     'id_str': '1446251244075507717',
     'indices': [88, 111],
     'media_url': 'http://pbs.twimg.com/media/FBId3tAWQAQk9BR.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBId3tAWQAQk9BR.jpg',
     'url': 'https://t.co/LizrAytwGZ',
     'display_url': 'pic.twitter.com/LizrAytwGZ',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1446251278154280965/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1446251278154280965,
     'source_status_id_str': '1446251278154280965',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1446251244075507717,
     'id_str': '1446251244075507717',
     'indices': [88, 111],
     'media_url': 'http://pbs.twimg.com/media/FBId3tAWQAQk9BR.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBId3tAWQAQk9BR.jpg',
     'url': 'https://t.co/LizrAytwGZ',
     'display_url': 'pic.twitter.com/LizrAytwGZ',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1446251278154280965/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1446251278154280965,
     'source_status_id_str': '1446251278154280965',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 21021,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1446251244075507717/pl/vG2AUhYN_wFrTTUX.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446251244075507717/vid/720x720/UwIMLu4QBp0-y6Dl.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446251244075507717/vid/540x540/F-PbKvc1MSsCm3wV.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446251244075507717/vid/320x320/jdtrYJyLV_L46WG9.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3146,
  'favorite_count': 22001,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 08 21:59:53 +0000 2021',
  'id': 1446596232877592579,
  'id_str': '1446596232877592579',
  'full_text': 'We’re making real progress for the American people. https://t.co/CqNYb5ZFwk',
  'truncated': False,
  'display_text_range': [0, 51],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1446596192431968261,
     'id_str': '1446596192431968261',
     'indices': [52, 75],
     'media_url': 'http://pbs.twimg.com/media/FBNXmqtX0AAdrkp.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBNXmqtX0AAdrkp.jpg',
     'url': 'https://t.co/CqNYb5ZFwk',
     'display_url': 'pic.twitter.com/CqNYb5ZFwk',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1446596232877592579/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1446596192431968261,
     'id_str': '1446596192431968261',
     'indices': [52, 75],
     'media_url': 'http://pbs.twimg.com/media/FBNXmqtX0AAdrkp.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBNXmqtX0AAdrkp.jpg',
     'url': 'https://t.co/CqNYb5ZFwk',
     'display_url': 'pic.twitter.com/CqNYb5ZFwk',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1446596232877592579/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 5839,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446596192431968261/vid/320x320/IbXvYUZzpwsfh99a.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446596192431968261/vid/540x540/5rOjDEkppgVERT8N.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1446596192431968261/vid/720x720/yYLFl8Ujn85B6abn.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1446596192431968261/pl/ai6yW1NfqyaNBhgr.m3u8?tag=14'}]},
     'additional_media_info': {'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1154,
  'favorite_count': 7389,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 08 19:35:01 +0000 2021',
  'id': 1446559777694289924,
  'id_str': '1446559777694289924',
  'full_text': 'Millions of American parents are feeling the squeeze, having a hard time doing their job, earning a paycheck, while taking care of their children or aging parents. My Build Back Better Agenda will change that.',
  'truncated': False,
  'display_text_range': [0, 209],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3103,
  'favorite_count': 24028,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 08 18:34:04 +0000 2021',
  'id': 1446544440823267330,
  'id_str': '1446544440823267330',
  'full_text': 'RT @POTUS: After the last administration chipped away their protections, today I’m proud to announce the protection and expansion of three…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Oct 08 18:30:14 +0000 2021',
   'id': 1446543475441340424,
   'id_str': '1446543475441340424',
   'full_text': 'After the last administration chipped away their protections, today I’m proud to announce the protection and expansion of three of our most treasured national monuments:\n \n- Bears Ears \n- Grand Staircase-Escalante\n- Northeast Canyons and Seamounts',
   'truncated': False,
   'display_text_range': [0, 247],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3046,
   'favorite_count': 19610,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3046,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 07 23:37:00 +0000 2021',
  'id': 1446258288438484994,
  'id_str': '1446258288438484994',
  'full_text': "When we give working families a break, we're not just raising their quality of life—we're putting parents in a position to earn a paycheck. That's what the Bipartisan Infrastructure Deal and the Build Back Better Agenda are all about.",
  'truncated': False,
  'display_text_range': [0, 234],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2998,
  'favorite_count': 20478,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 07 21:43:00 +0000 2021',
  'id': 1446229599290077193,
  'id_str': '1446229599290077193',
  'full_text': 'Teachers and firefighters shouldn’t pay a higher tax rate than millionaires and billionaires.\nhttps://t.co/02tU0LF7p1',
  'truncated': False,
  'display_text_range': [0, 117],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1445852868766887936,
     'id_str': '1445852868766887936',
     'indices': [94, 117],
     'media_url': 'http://pbs.twimg.com/media/FBCzltXUUAMicTR.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBCzltXUUAMicTR.jpg',
     'url': 'https://t.co/02tU0LF7p1',
     'display_url': 'pic.twitter.com/02tU0LF7p1',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1445852946504327172/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1445852946504327172,
     'source_status_id_str': '1445852946504327172',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1445852868766887936,
     'id_str': '1445852868766887936',
     'indices': [94, 117],
     'media_url': 'http://pbs.twimg.com/media/FBCzltXUUAMicTR.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FBCzltXUUAMicTR.jpg',
     'url': 'https://t.co/02tU0LF7p1',
     'display_url': 'pic.twitter.com/02tU0LF7p1',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1445852946504327172/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1445852946504327172,
     'source_status_id_str': '1445852946504327172',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 14114,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1445852868766887936/pl/S0ycXw4H_O1y9ROa.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445852868766887936/vid/540x540/Acfq50osBL-jOc9f.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445852868766887936/vid/720x720/KAKVAP2FRSyu_uxY.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445852868766887936/vid/320x320/IvOOmrB9tNrz3oPX.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1840,
  'favorite_count': 12369,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 07 21:21:16 +0000 2021',
  'id': 1446224128227385346,
  'id_str': '1446224128227385346',
  'full_text': 'RT @WhiteHouse: Vaccination requirements work. They drive up vaccination rates, which makes our communities and schools safer, along with s…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Oct 07 16:05:02 +0000 2021',
   'id': 1446144544941166593,
   'id_str': '1446144544941166593',
   'full_text': 'Vaccination requirements work. They drive up vaccination rates, which makes our communities and schools safer, along with strengthening our economic recovery. Vaccine requirements are widely supported, proven successful, and quickly becoming the standard across the country. https://t.co/qo1swxjbYg',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1446144540235210755,
      'id_str': '1446144540235210755',
      'indices': [275, 298],
      'media_url': 'http://pbs.twimg.com/media/FBG8zB6XIAMJzTY.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FBG8zB6XIAMJzTY.jpg',
      'url': 'https://t.co/qo1swxjbYg',
      'display_url': 'pic.twitter.com/qo1swxjbYg',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1446144544941166593/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1154, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1446144540235210755,
      'id_str': '1446144540235210755',
      'indices': [275, 298],
      'media_url': 'http://pbs.twimg.com/media/FBG8zB6XIAMJzTY.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FBG8zB6XIAMJzTY.jpg',
      'url': 'https://t.co/qo1swxjbYg',
      'display_url': 'pic.twitter.com/qo1swxjbYg',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1446144544941166593/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1154, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2483,
   'favorite_count': 11258,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2483,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Oct 07 15:03:01 +0000 2021',
  'id': 1446128938468532231,
  'id_str': '1446128938468532231',
  'full_text': 'The Bipartisan Infrastructure Deal is about rebuilding our roads, our highways, our bridges, our ports, our airports, our broadband. It’s a blue-collar blueprint for rebuilding America.',
  'truncated': False,
  'display_text_range': [0, 185],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2552,
  'favorite_count': 17391,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Oct 06 20:50:02 +0000 2021',
  'id': 1445853879401259008,
  'id_str': '1445853879401259008',
  'full_text': 'Our Bipartisan Infrastructure Deal and Build Back Better Agenda are not about left versus right—they’re about competitiveness versus complacency.\nhttps://t.co/H54nLNbzqL',
  'truncated': False,
  'display_text_range': [0, 169],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1445540056689750016,
     'id_str': '1445540056689750016',
     'indices': [146, 169],
     'media_url': 'http://pbs.twimg.com/media/FA-XNDRUcAoLo8N.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FA-XNDRUcAoLo8N.jpg',
     'url': 'https://t.co/H54nLNbzqL',
     'display_url': 'pic.twitter.com/H54nLNbzqL',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1445540261845626888/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1445540261845626888,
     'source_status_id_str': '1445540261845626888',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1445540056689750016,
     'id_str': '1445540056689750016',
     'indices': [146, 169],
     'media_url': 'http://pbs.twimg.com/media/FA-XNDRUcAoLo8N.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FA-XNDRUcAoLo8N.jpg',
     'url': 'https://t.co/H54nLNbzqL',
     'display_url': 'pic.twitter.com/H54nLNbzqL',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1445540261845626888/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1445540261845626888,
     'source_status_id_str': '1445540261845626888',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 24558,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445540056689750016/vid/320x320/8xtwEEhV8SNIdLId.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1445540056689750016/pl/dYVogSA5J_LkxPXa.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445540056689750016/vid/540x540/bTheHOPs5059gnnH.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445540056689750016/vid/720x720/vZLy8Hacz-kukEsf.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1185,
  'favorite_count': 7755,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Oct 06 18:30:03 +0000 2021',
  'id': 1445818651869728768,
  'id_str': '1445818651869728768',
  'full_text': 'Republicans forcing us to default on the debt would lead to a self-inflicted wound that would take our economy over a cliff.\nhttps://t.co/x0anA9Gjk7',
  'truncated': False,
  'display_text_range': [0, 148],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1445378241452204040,
     'id_str': '1445378241452204040',
     'indices': [125, 148],
     'media_url': 'http://pbs.twimg.com/media/FA8D45cXIAc3G0o.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FA8D45cXIAc3G0o.jpg',
     'url': 'https://t.co/x0anA9Gjk7',
     'display_url': 'pic.twitter.com/x0anA9Gjk7',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1445378289363738629/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1445378289363738629,
     'source_status_id_str': '1445378289363738629',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1445378241452204040,
     'id_str': '1445378241452204040',
     'indices': [125, 148],
     'media_url': 'http://pbs.twimg.com/media/FA8D45cXIAc3G0o.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FA8D45cXIAc3G0o.jpg',
     'url': 'https://t.co/x0anA9Gjk7',
     'display_url': 'pic.twitter.com/x0anA9Gjk7',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1445378289363738629/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1445378289363738629,
     'source_status_id_str': '1445378289363738629',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 27194,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445378241452204040/vid/320x320/Tnghre3kkEUNZvTx.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445378241452204040/vid/540x540/48cBgZFDEndnV2OC.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445378241452204040/vid/720x720/tneDCMnjACX1TJgO.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1445378241452204040/pl/FxzdcglYqHsd_4iD.m3u8?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1109,
  'favorite_count': 5681,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 05 21:18:01 +0000 2021',
  'id': 1445498536452182027,
  'id_str': '1445498536452182027',
  'full_text': 'RT @POTUS: I ran on my Build Back Better Agenda. I said it was time to build an economy that looks out from Scranton — instead of looking d…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Oct 05 21:05:47 +0000 2021',
   'id': 1445495455400427532,
   'id_str': '1445495455400427532',
   'full_text': 'I ran on my Build Back Better Agenda. I said it was time to build an economy that looks out from Scranton — instead of looking down from Wall Street.\n\nIt’s what 81 million Americans — the most votes in history — were supporting when they supported me.\n\nNow it’s time to deliver.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5557,
   'favorite_count': 32469,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5557,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 05 19:21:36 +0000 2021',
  'id': 1445469237468749841,
  'id_str': '1445469237468749841',
  'full_text': "My message to Republicans: If you don't want to help save the country, get out of the way. https://t.co/5Um4dL0XO8",
  'truncated': False,
  'display_text_range': [0, 90],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1445469091205050370,
     'id_str': '1445469091205050370',
     'indices': [91, 114],
     'media_url': 'http://pbs.twimg.com/media/FA9Wm31VgAEeBJp.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FA9Wm31VgAEeBJp.jpg',
     'url': 'https://t.co/5Um4dL0XO8',
     'display_url': 'pic.twitter.com/5Um4dL0XO8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1445469237468749841/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1445469091205050370,
     'id_str': '1445469091205050370',
     'indices': [91, 114],
     'media_url': 'http://pbs.twimg.com/media/FA9Wm31VgAEeBJp.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FA9Wm31VgAEeBJp.jpg',
     'url': 'https://t.co/5Um4dL0XO8',
     'display_url': 'pic.twitter.com/5Um4dL0XO8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1445469237468749841/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 17985,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445469091205050370/vid/540x540/n1JE4W98_AOWWtP4.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445469091205050370/vid/320x320/NQQ9rOYA5qAFD_oh.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1445469091205050370/pl/NAklF584V1LMxH33.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445469091205050370/vid/720x720/jK-fbfAMRnmMxXpC.mp4?tag=14'}]},
     'additional_media_info': {'title': 'My message to Republicans',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4654,
  'favorite_count': 26369,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Oct 05 15:57:26 +0000 2021',
  'id': 1445417858687700992,
  'id_str': '1445417858687700992',
  'full_text': "Republicans won't vote to raise the debt limit to cover their own policies under the previous administration. It’s reckless and dangerous. https://t.co/qXu0jlcQbf",
  'truncated': False,
  'display_text_range': [0, 138],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1445103177808982021,
     'id_str': '1445103177808982021',
     'indices': [139, 162],
     'media_url': 'http://pbs.twimg.com/media/FA4Jt2rWYA0k5NY.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FA4Jt2rWYA0k5NY.jpg',
     'url': 'https://t.co/qXu0jlcQbf',
     'display_url': 'pic.twitter.com/qXu0jlcQbf',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1445417858687700992/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1445103177808982021,
     'id_str': '1445103177808982021',
     'indices': [139, 162],
     'media_url': 'http://pbs.twimg.com/media/FA4Jt2rWYA0k5NY.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FA4Jt2rWYA0k5NY.jpg',
     'url': 'https://t.co/qXu0jlcQbf',
     'display_url': 'pic.twitter.com/qXu0jlcQbf',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1445417858687700992/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 22055,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445103177808982021/vid/720x720/UwkECCJWbGxVToD4.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445103177808982021/vid/320x320/ZTr7E4NGZnKogeth.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1445103177808982021/pl/ZwNZ9SWX7j0eky7W.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1445103177808982021/vid/540x540/GRP3NVZuizRLE-1B.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1754,
  'favorite_count': 9077,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 02 17:50:05 +0000 2021',
  'id': 1444359045054439429,
  'id_str': '1444359045054439429',
  'full_text': 'RT @POTUS: During National Domestic Violence Awareness and Prevention Month, we come together to reaffirm our commitment to ending domestic…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Oct 02 17:47:29 +0000 2021',
   'id': 1444358388981411848,
   'id_str': '1444358388981411848',
   'full_text': 'During National Domestic Violence Awareness and Prevention Month, we come together to reaffirm our commitment to ending domestic violence and supporting survivors. We must work to strengthen VAWA and create a society where all people can thrive without fear of violence or abuse.',
   'truncated': False,
   'display_text_range': [0, 279],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3575,
   'favorite_count': 20273,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3575,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Oct 02 14:35:27 +0000 2021',
  'id': 1444310062198054921,
  'id_str': '1444310062198054921',
  'full_text': 'RT @POTUS: My Build Back Better Agenda and the Bipartisan Infrastructure Deal will spur economic growth – creating and supporting 4 million…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Oct 02 14:34:30 +0000 2021',
   'id': 1444309822137151488,
   'id_str': '1444309822137151488',
   'full_text': 'My Build Back Better Agenda and the Bipartisan Infrastructure Deal will spur economic growth – creating and supporting 4 million jobs a year.\n \nAs we continue our economic recovery, we can’t afford not to seize this opportunity.',
   'truncated': False,
   'display_text_range': [0, 228],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3996,
   'favorite_count': 25218,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3996,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 01 23:41:21 +0000 2021',
  'id': 1444085055031320578,
  'id_str': '1444085055031320578',
  'full_text': 'RT @POTUS: This week, I’ve been working closely with leaders in Congress to pass my Build Back Better Agenda and Bipartisan Infrastructure…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Oct 01 23:40:49 +0000 2021',
   'id': 1444084921497231360,
   'id_str': '1444084921497231360',
   'full_text': 'This week, I’ve been working closely with leaders in Congress to pass my Build Back Better Agenda and Bipartisan Infrastructure Deal. This is what we were elected to do and we will get it done. https://t.co/weOTcyW6M6',
   'truncated': False,
   'display_text_range': [0, 193],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1444084917764247552,
      'id_str': '1444084917764247552',
      'indices': [194, 217],
      'media_url': 'http://pbs.twimg.com/media/FAprlOTWUAAm-R7.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FAprlOTWUAAm-R7.jpg',
      'url': 'https://t.co/weOTcyW6M6',
      'display_url': 'pic.twitter.com/weOTcyW6M6',
      'expanded_url': 'https://twitter.com/POTUS/status/1444084921497231360/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 560, 'resize': 'fit'},
       'large': {'w': 1125, 'h': 926, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 926, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1444084917764247552,
      'id_str': '1444084917764247552',
      'indices': [194, 217],
      'media_url': 'http://pbs.twimg.com/media/FAprlOTWUAAm-R7.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FAprlOTWUAAm-R7.jpg',
      'url': 'https://t.co/weOTcyW6M6',
      'display_url': 'pic.twitter.com/weOTcyW6M6',
      'expanded_url': 'https://twitter.com/POTUS/status/1444084921497231360/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 560, 'resize': 'fit'},
       'large': {'w': 1125, 'h': 926, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 926, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4183,
   'favorite_count': 32069,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4183,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 01 22:34:05 +0000 2021',
  'id': 1444068124421144580,
  'id_str': '1444068124421144580',
  'full_text': 'RT @POTUS: We are going to deliver for the American people. https://t.co/w5lBtYCUoq',
  'truncated': False,
  'display_text_range': [0, 83],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1444067730265722882,
     'id_str': '1444067730265722882',
     'indices': [60, 83],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1444067730265722882/img/0khtULOv9JEtn5SV.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1444067730265722882/img/0khtULOv9JEtn5SV.jpg',
     'url': 'https://t.co/w5lBtYCUoq',
     'display_url': 'pic.twitter.com/w5lBtYCUoq',
     'expanded_url': 'https://twitter.com/POTUS/status/1444067763929112578/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1444067763929112578,
     'source_status_id_str': '1444067763929112578',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1444067730265722882,
     'id_str': '1444067730265722882',
     'indices': [60, 83],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1444067730265722882/img/0khtULOv9JEtn5SV.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1444067730265722882/img/0khtULOv9JEtn5SV.jpg',
     'url': 'https://t.co/w5lBtYCUoq',
     'display_url': 'pic.twitter.com/w5lBtYCUoq',
     'expanded_url': 'https://twitter.com/POTUS/status/1444067763929112578/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1444067763929112578,
     'source_status_id_str': '1444067763929112578',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 8509,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1444067730265722882/vid/320x320/EGt8tXhyKpgfJukT.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1444067730265722882/pl/3vsiEtkmPKA87Zf8.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1444067730265722882/vid/540x540/qFAA5oJsxrXkHgVB.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1444067730265722882/vid/720x720/CnxhUVFowx4jHiJI.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004746,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Oct 01 22:32:39 +0000 2021',
   'id': 1444067763929112578,
   'id_str': '1444067763929112578',
   'full_text': 'We are going to deliver for the American people. https://t.co/w5lBtYCUoq',
   'truncated': False,
   'display_text_range': [0, 48],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1444067730265722882,
      'id_str': '1444067730265722882',
      'indices': [49, 72],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1444067730265722882/img/0khtULOv9JEtn5SV.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1444067730265722882/img/0khtULOv9JEtn5SV.jpg',
      'url': 'https://t.co/w5lBtYCUoq',
      'display_url': 'pic.twitter.com/w5lBtYCUoq',
      'expanded_url': 'https://twitter.com/POTUS/status/1444067763929112578/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1444067730265722882,
      'id_str': '1444067730265722882',
      'indices': [49, 72],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1444067730265722882/img/0khtULOv9JEtn5SV.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1444067730265722882/img/0khtULOv9JEtn5SV.jpg',
      'url': 'https://t.co/w5lBtYCUoq',
      'display_url': 'pic.twitter.com/w5lBtYCUoq',
      'expanded_url': 'https://twitter.com/POTUS/status/1444067763929112578/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 8509,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1444067730265722882/vid/320x320/EGt8tXhyKpgfJukT.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1444067730265722882/pl/3vsiEtkmPKA87Zf8.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1444067730265722882/vid/540x540/qFAA5oJsxrXkHgVB.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1444067730265722882/vid/720x720/CnxhUVFowx4jHiJI.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2463,
   'favorite_count': 16333,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2463,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Oct 01 15:42:12 +0000 2021',
  'id': 1443964473941925893,
  'id_str': '1443964473941925893',
  'full_text': 'RT @POTUS: Let me be clear: No hardworking American should be paying more in taxes than entire tech or oil companies. It’s long past time c…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Oct 01 14:23:27 +0000 2021',
   'id': 1443944653661818881,
   'id_str': '1443944653661818881',
   'full_text': 'Let me be clear: No hardworking American should be paying more in taxes than entire tech or oil companies. It’s long past time corporations pay their fair share.',
   'truncated': False,
   'display_text_range': [0, 161],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4827,
   'favorite_count': 30462,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4827,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 30 00:06:02 +0000 2021',
  'id': 1443366490158272517,
  'id_str': '1443366490158272517',
  'full_text': 'We have a path to usher in a new era of economic growth that benefits everybody, not just those at the top, with the Build Back Better Agenda and Bipartisan Infrastructure Deal.',
  'truncated': False,
  'display_text_range': [0, 177],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4422,
  'favorite_count': 31431,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 29 23:51:17 +0000 2021',
  'id': 1443362778836779008,
  'id_str': '1443362778836779008',
  'full_text': 'RT @POTUS: My Build Back Better Agenda and the Bipartisan Infrastructure Deal are overwhelmingly supported by the American people. We are w…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Sep 29 23:33:06 +0000 2021',
   'id': 1443358201202814977,
   'id_str': '1443358201202814977',
   'full_text': 'My Build Back Better Agenda and the Bipartisan Infrastructure Deal are overwhelmingly supported by the American people. We are working to get this done. https://t.co/p5lcLcTHgV',
   'truncated': False,
   'display_text_range': [0, 152],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1443358198354829315,
      'id_str': '1443358198354829315',
      'indices': [153, 176],
      'media_url': 'http://pbs.twimg.com/media/FAfWoliWYAMI1FU.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FAfWoliWYAMI1FU.jpg',
      'url': 'https://t.co/p5lcLcTHgV',
      'display_url': 'pic.twitter.com/p5lcLcTHgV',
      'expanded_url': 'https://twitter.com/POTUS/status/1443358201202814977/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1443358198354829315,
      'id_str': '1443358198354829315',
      'indices': [153, 176],
      'media_url': 'http://pbs.twimg.com/media/FAfWoliWYAMI1FU.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/FAfWoliWYAMI1FU.jpg',
      'url': 'https://t.co/p5lcLcTHgV',
      'display_url': 'pic.twitter.com/p5lcLcTHgV',
      'expanded_url': 'https://twitter.com/POTUS/status/1443358201202814977/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1125, 'h': 750, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1125, 'h': 750, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3563,
   'favorite_count': 21452,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3563,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 29 21:49:00 +0000 2021',
  'id': 1443332006742568967,
  'id_str': '1443332006742568967',
  'full_text': 'The Bipartisan Infrastructure Deal and the Build Back Better Agenda will create good-paying jobs and lower costs for families. \n\nTogether they will grow the economy for everybody.',
  'truncated': False,
  'display_text_range': [0, 179],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3270,
  'favorite_count': 22414,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 29 18:48:22 +0000 2021',
  'id': 1443286545608454153,
  'id_str': '1443286545608454153',
  'full_text': 'This is the moment to make sure all of us—not just the wealthy few at the top—are dealt in and share the benefits of a growing economy. This is our opportunity to not just build back, but build back better for all Americans.',
  'truncated': False,
  'display_text_range': [0, 224],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3083,
  'favorite_count': 20782,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 28 22:50:01 +0000 2021',
  'id': 1442984974328627203,
  'id_str': '1442984974328627203',
  'full_text': 'Our Build Back Better Agenda will strengthen our economy by lowering taxes on the working and middle class, and reducing the cost of child care, housing, and higher education.\n\nWe will grow our economy from the bottom up and the middle out.',
  'truncated': False,
  'display_text_range': [0, 240],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2286,
  'favorite_count': 15425,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 28 21:32:00 +0000 2021',
  'id': 1442965340653121537,
  'id_str': '1442965340653121537',
  'full_text': "As my friend, American hero Representative John Lewis, reminded us shortly before he passed, 'Democracy is not a state. It is an act.’ This National Voter Registration Day, and every day, we are committed to defending, strengthening, and expanding the sacred right to vote.",
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4224,
  'favorite_count': 27097,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 28 18:27:07 +0000 2021',
  'id': 1442918811116523521,
  'id_str': '1442918811116523521',
  'full_text': 'Last year, 55 of the largest corporations paid zero dollars in federal income taxes on over $40 billion of profits.\n\nIt’s time for big corporations to finally pay their fair share.',
  'truncated': False,
  'display_text_range': [0, 180],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2631,
  'favorite_count': 19414,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 28 16:57:13 +0000 2021',
  'id': 1442896187770564609,
  'id_str': '1442896187770564609',
  'full_text': 'We have the power to build the country we hope to leave to our children and grandchildren—and it starts at the ballot box.\n\nOn this National Voter Registration Day, check that your voter registration status is up to date at https://t.co/Hy8C4n0lUk.',
  'truncated': False,
  'display_text_range': [0, 248],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/Hy8C4n0lUk',
     'expanded_url': 'http://IWillVote.com',
     'display_url': 'IWillVote.com',
     'indices': [224, 247]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1607,
  'favorite_count': 9563,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Sep 27 22:28:23 +0000 2021',
  'id': 1442617142222917633,
  'id_str': '1442617142222917633',
  'full_text': 'Today I got my COVID-19 booster shot—and just like my first and second dose, it was safe and easy. \n\nGet vaccinated. Together, can we save lives and beat this virus. https://t.co/gtNAQqmOoj',
  'truncated': False,
  'display_text_range': [0, 165],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1442558879485739009,
     'id_str': '1442558879485739009',
     'indices': [166, 189],
     'media_url': 'http://pbs.twimg.com/media/FAT_tLZX0AA5k6j.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FAT_tLZX0AA5k6j.jpg',
     'url': 'https://t.co/gtNAQqmOoj',
     'display_url': 'pic.twitter.com/gtNAQqmOoj',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1442617142222917633/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1442558879485739009,
     'id_str': '1442558879485739009',
     'indices': [166, 189],
     'media_url': 'http://pbs.twimg.com/media/FAT_tLZX0AA5k6j.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FAT_tLZX0AA5k6j.jpg',
     'url': 'https://t.co/gtNAQqmOoj',
     'display_url': 'pic.twitter.com/gtNAQqmOoj',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1442617142222917633/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 5105,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442558879485739009/vid/720x720/rKQGS_g9eD8E6Uin.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442558879485739009/vid/540x540/0e9veLZ9b6aU9Few.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442558879485739009/vid/320x320/CCpEmYTBAMX0TsSy.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1442558879485739009/pl/CDbGUyn0_XSbZIyG.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3843,
  'favorite_count': 43774,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Sep 27 21:24:00 +0000 2021',
  'id': 1442600939022602243,
  'id_str': '1442600939022602243',
  'full_text': 'The wealthy don’t need another tax cut. Our Build Back Better agenda will create an economy that works for those who built America: the middle class.',
  'truncated': False,
  'display_text_range': [0, 149],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3094,
  'favorite_count': 21771,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Sep 27 20:07:00 +0000 2021',
  'id': 1442581561300426756,
  'id_str': '1442581561300426756',
  'full_text': 'We need to reward work in this country—not just wealth.',
  'truncated': False,
  'display_text_range': [0, 55],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5516,
  'favorite_count': 56483,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Sep 27 16:08:43 +0000 2021',
  'id': 1442521593289138180,
  'id_str': '1442521593289138180',
  'full_text': 'Join @DrBiden and @TheDemocrats for a virtual town hall tonight to discuss our Build Back Better Agenda, upcoming elections, and what Democrats need to do to win in 2022. RSVP now→\nhttps://t.co/AotPstgKgL',
  'truncated': False,
  'display_text_range': [0, 204],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'DrBiden',
     'name': 'Dr. Jill Biden',
     'id': 821784477076750338,
     'id_str': '821784477076750338',
     'indices': [5, 13]},
    {'screen_name': 'TheDemocrats',
     'name': 'The Democrats',
     'id': 14377605,
     'id_str': '14377605',
     'indices': [18, 31]}],
   'urls': [{'url': 'https://t.co/AotPstgKgL',
     'expanded_url': 'https://events.democrats.org/event/416661/?utm_source=social-jrb',
     'display_url': 'events.democrats.org/event/416661/?…',
     'indices': [181, 204]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 798,
  'favorite_count': 4632,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Sep 27 14:26:01 +0000 2021',
  'id': 1442495747329560576,
  'id_str': '1442495747329560576',
  'full_text': 'RT @POTUS: I’ll be getting my COVID-19 booster shot — and I encourage everyone who’s eligible to get theirs as well. https://t.co/l6Gmo0G8OO',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1442495402536800257,
     'id_str': '1442495402536800257',
     'indices': [117, 140],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1442495402536800257/img/jX5ND0iHIiJUL7LK.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1442495402536800257/img/jX5ND0iHIiJUL7LK.jpg',
     'url': 'https://t.co/l6Gmo0G8OO',
     'display_url': 'pic.twitter.com/l6Gmo0G8OO',
     'expanded_url': 'https://twitter.com/POTUS/status/1442495571986583558/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1442495571986583558,
     'source_status_id_str': '1442495571986583558',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1442495402536800257,
     'id_str': '1442495402536800257',
     'indices': [117, 140],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1442495402536800257/img/jX5ND0iHIiJUL7LK.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1442495402536800257/img/jX5ND0iHIiJUL7LK.jpg',
     'url': 'https://t.co/l6Gmo0G8OO',
     'display_url': 'pic.twitter.com/l6Gmo0G8OO',
     'expanded_url': 'https://twitter.com/POTUS/status/1442495571986583558/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1442495571986583558,
     'source_status_id_str': '1442495571986583558',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 58976,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442495402536800257/vid/540x540/O0a9TyV2I-pm4own.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442495402536800257/vid/320x320/6ztksP4sdTJBTpP2.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442495402536800257/vid/720x720/4FO4WDgNqJL2JJI1.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1442495402536800257/pl/A1ppz1OPALYIkHn2.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004746,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Sep 27 14:25:19 +0000 2021',
   'id': 1442495571986583558,
   'id_str': '1442495571986583558',
   'full_text': 'I’ll be getting my COVID-19 booster shot — and I encourage everyone who’s eligible to get theirs as well. https://t.co/l6Gmo0G8OO',
   'truncated': False,
   'display_text_range': [0, 105],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1442495402536800257,
      'id_str': '1442495402536800257',
      'indices': [106, 129],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1442495402536800257/img/jX5ND0iHIiJUL7LK.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1442495402536800257/img/jX5ND0iHIiJUL7LK.jpg',
      'url': 'https://t.co/l6Gmo0G8OO',
      'display_url': 'pic.twitter.com/l6Gmo0G8OO',
      'expanded_url': 'https://twitter.com/POTUS/status/1442495571986583558/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1442495402536800257,
      'id_str': '1442495402536800257',
      'indices': [106, 129],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1442495402536800257/img/jX5ND0iHIiJUL7LK.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1442495402536800257/img/jX5ND0iHIiJUL7LK.jpg',
      'url': 'https://t.co/l6Gmo0G8OO',
      'display_url': 'pic.twitter.com/l6Gmo0G8OO',
      'expanded_url': 'https://twitter.com/POTUS/status/1442495571986583558/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 58976,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1442495402536800257/vid/540x540/O0a9TyV2I-pm4own.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1442495402536800257/vid/320x320/6ztksP4sdTJBTpP2.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1442495402536800257/vid/720x720/4FO4WDgNqJL2JJI1.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1442495402536800257/pl/A1ppz1OPALYIkHn2.m3u8?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2411,
   'favorite_count': 16838,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2411,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 26 23:39:00 +0000 2021',
  'id': 1442272522775400448,
  'id_str': '1442272522775400448',
  'full_text': 'Over 182 million Americans have already done the right thing and are fully vaccinated as of today.  \n\nTo the other 70 million eligible Americans who have yet to get their first shot: get vaccinated. It can save your life. https://t.co/V5pz14zBQP',
  'truncated': False,
  'display_text_range': [0, 221],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1442135533723930630,
     'id_str': '1442135533723930630',
     'indices': [222, 245],
     'media_url': 'http://pbs.twimg.com/media/FAN_W3AVQAotqx-.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FAN_W3AVQAotqx-.jpg',
     'url': 'https://t.co/V5pz14zBQP',
     'display_url': 'pic.twitter.com/V5pz14zBQP',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1442272522775400448/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1442135533723930630,
     'id_str': '1442135533723930630',
     'indices': [222, 245],
     'media_url': 'http://pbs.twimg.com/media/FAN_W3AVQAotqx-.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FAN_W3AVQAotqx-.jpg',
     'url': 'https://t.co/V5pz14zBQP',
     'display_url': 'pic.twitter.com/V5pz14zBQP',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1442272522775400448/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 46080,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442135533723930630/vid/320x320/FXJn5E_jvL8tw9in.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442135533723930630/vid/540x540/k9UKYhlz8hLxnZWY.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1442135533723930630/pl/E66FJ8H4NkCZgx98.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1442135533723930630/vid/720x720/j_DCQRDQNMW09K06.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2190,
  'favorite_count': 14109,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 26 22:30:29 +0000 2021',
  'id': 1442255280109195264,
  'id_str': '1442255280109195264',
  'full_text': 'RT @POTUS: The families of our fallen men and women in uniform understand the true and painful price of freedom — coping with loss and unsp…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Sep 26 22:29:53 +0000 2021',
   'id': 1442255128271097860,
   'id_str': '1442255128271097860',
   'full_text': 'The families of our fallen men and women in uniform understand the true and painful price of freedom — coping with loss and unspeakable grief. Today, on Gold Star Mother’s and Family’s Day, we recognize their enduring pain and honor their resilience.',
   'truncated': False,
   'display_text_range': [0, 250],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3336,
   'favorite_count': 21512,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3336,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 26 20:13:00 +0000 2021',
  'id': 1442220684407676929,
  'id_str': '1442220684407676929',
  'full_text': 'Millionaires and billionaires are paying a lower tax rate than teachers and firefighters. We’re going to restore fairness to the tax code, give working people a much-needed tax cut, and make the investments that will grow our economy for years to come.',
  'truncated': False,
  'display_text_range': [0, 252],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7113,
  'favorite_count': 51936,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 26 17:49:02 +0000 2021',
  'id': 1442184451362988034,
  'id_str': '1442184451362988034',
  'full_text': 'Our Build Back Better Agenda will cut taxes for the middle class, lower costs for working families, create more jobs, and sustain economic growth for years to come. \n\nAnd the most important part? No one making under $400,000 will pay a penny more in taxes.',
  'truncated': False,
  'display_text_range': [0, 256],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3227,
  'favorite_count': 19935,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 26 15:18:00 +0000 2021',
  'id': 1442146441993064449,
  'id_str': '1442146441993064449',
  'full_text': 'If you don’t qualify for the booster, or you got the Moderna and Johnson &amp; Johnson vaccines: if you’re fully vaccinated, you’re highly protected from severe illness even if you get COVID-19. https://t.co/1FbMCy9san',
  'truncated': False,
  'display_text_range': [0, 194],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1441851506286809095,
     'id_str': '1441851506286809095',
     'indices': [195, 218],
     'media_url': 'http://pbs.twimg.com/media/FAJ8aG-XEAI5m6e.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FAJ8aG-XEAI5m6e.jpg',
     'url': 'https://t.co/1FbMCy9san',
     'display_url': 'pic.twitter.com/1FbMCy9san',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1442146441993064449/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1441851506286809095,
     'id_str': '1441851506286809095',
     'indices': [195, 218],
     'media_url': 'http://pbs.twimg.com/media/FAJ8aG-XEAI5m6e.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FAJ8aG-XEAI5m6e.jpg',
     'url': 'https://t.co/1FbMCy9san',
     'display_url': 'pic.twitter.com/1FbMCy9san',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1442146441993064449/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 32399,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1441851506286809095/pl/uk5tMsmKJSVGFb8f.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1441851506286809095/vid/540x540/AJAJNVU4pubLASxd.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1441851506286809095/vid/720x720/oZqEV5uChumGj8hk.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1441851506286809095/vid/320x320/ZFp4umlZPf52seev.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1539,
  'favorite_count': 9766,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 26 01:35:00 +0000 2021',
  'id': 1441939328939302912,
  'id_str': '1441939328939302912',
  'full_text': 'Climate change is all around us. From hurricanes and unprecedented flooding to historic wildfires, we’ve seen its effects firsthand all summer. \n\nWe have a chance to stop climate change’s worst effects, but we have to act right now. We must pass our Build Back Better Agenda.',
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2806,
  'favorite_count': 18220,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 25 22:55:00 +0000 2021',
  'id': 1441899064556204033,
  'id_str': '1441899064556204033',
  'full_text': 'We’ve made so much progress during the past eight months of this pandemic, and now we face a critical moment. We have the tools and we have the plan—we just have to finish the job together as one nation. \n\nPlease, get vaccinated.',
  'truncated': False,
  'display_text_range': [0, 229],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3949,
  'favorite_count': 29241,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 25 21:06:01 +0000 2021',
  'id': 1441871636731293701,
  'id_str': '1441871636731293701',
  'full_text': 'While typical working Americans pay their taxes, the top 1% evade an estimated $160 billion in taxes each year.\n \nIt’s wrong—and it’s past time the ultra-wealthy and corporations paid their fair share.',
  'truncated': False,
  'display_text_range': [0, 201],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5445,
  'favorite_count': 35035,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 25 19:35:06 +0000 2021',
  'id': 1441848758321438723,
  'id_str': '1441848758321438723',
  'full_text': "The majority of Americans who were fully vaccinated with the Pfizer vaccine are now eligible to receive a booster shot six months after they've received their second shot. https://t.co/6vVAhppz8u",
  'truncated': False,
  'display_text_range': [0, 171],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1441447087627980800,
     'id_str': '1441447087627980800',
     'indices': [172, 195],
     'media_url': 'http://pbs.twimg.com/media/FAEMknAVkAEpkSM.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FAEMknAVkAEpkSM.jpg',
     'url': 'https://t.co/6vVAhppz8u',
     'display_url': 'pic.twitter.com/6vVAhppz8u',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1441848758321438723/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1441447087627980800,
     'id_str': '1441447087627980800',
     'indices': [172, 195],
     'media_url': 'http://pbs.twimg.com/media/FAEMknAVkAEpkSM.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/FAEMknAVkAEpkSM.jpg',
     'url': 'https://t.co/6vVAhppz8u',
     'display_url': 'pic.twitter.com/6vVAhppz8u',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1441848758321438723/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 14815,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1441447087627980800/pl/pd2RQ5Rk_6WBzaW_.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1441447087627980800/vid/540x540/ICber9_Lkf8B0_AS.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1441447087627980800/vid/720x720/hUP4a4V0pCUT3z-u.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1441447087627980800/vid/320x320/Y-VMVwr8xRtzA_GC.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1666,
  'favorite_count': 11147,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 25 16:35:01 +0000 2021',
  'id': 1441803436291416069,
  'id_str': '1441803436291416069',
  'full_text': 'For too long, our economy has worked great for those at the top, while the hardworking people who built this country have been cut out of the deal. Our Build Back Better Agenda will deal working people back in.',
  'truncated': False,
  'display_text_range': [0, 210],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3209,
  'favorite_count': 22978,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 24 23:18:00 +0000 2021',
  'id': 1441542463613718528,
  'id_str': '1441542463613718528',
  'full_text': 'Folks, we’re facing an urgent choice: do we keep an economy that serves the wealthiest and biggest corporations—or finally give middle class families a fair shot?\n\nOur Build Back Better agenda is our moment to prove to the American people that their government works for them.',
  'truncated': False,
  'display_text_range': [0, 276],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4701,
  'favorite_count': 32583,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 24 22:37:00 +0000 2021',
  'id': 1441532146082934785,
  'id_str': '1441532146082934785',
  'full_text': 'RT @POTUS: The majority of Americans who were fully vaccinated with Pfizer can receive a booster shot at least 6 months after their second…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Sep 24 14:31:37 +0000 2021',
   'id': 1441409994365095949,
   'id_str': '1441409994365095949',
   'full_text': 'The majority of Americans who were fully vaccinated with Pfizer can receive a booster shot at least 6 months after their second shot. This includes people over 65, those with underlying medical conditions, and those in frontline jobs.',
   'truncated': False,
   'display_text_range': [0, 234],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4161,
   'favorite_count': 29331,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4161,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 23 19:40:02 +0000 2021',
  'id': 1441125220916420611,
  'id_str': '1441125220916420611',
  'full_text': 'The Bipartisan Infrastructure Deal is a blue-collar blueprint to rebuild America that will help make our historic economic recovery a historic long-term boom.',
  'truncated': False,
  'display_text_range': [0, 158],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2567,
  'favorite_count': 18355,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 23 15:55:08 +0000 2021',
  'id': 1441068624048017410,
  'id_str': '1441068624048017410',
  'full_text': 'Our Build Back Better Agenda will bring down the everyday costs that have for years been taking a bigger and bigger bite out of middle-class families’ incomes: health care, prescription drug costs, child care, education, housing, or caring for an elderly relative or loved one.',
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2234,
  'favorite_count': 15111,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 22 23:11:21 +0000 2021',
  'id': 1440816012719312899,
  'id_str': '1440816012719312899',
  'full_text': 'RT @POTUS: As we fight COVID-19 here at home, we need to continue our efforts overseas. That’s why today, I announced we’re increasing our…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Sep 22 17:22:04 +0000 2021',
   'id': 1440728112170340360,
   'id_str': '1440728112170340360',
   'full_text': 'As we fight COVID-19 here at home, we need to continue our efforts overseas. That’s why today, I announced we’re increasing our total vaccine donation to over 1.1 billion doses — more than every other country combined.\n \nThat’s American leadership on the global stage.',
   'truncated': False,
   'display_text_range': [0, 268],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3612,
   'favorite_count': 26271,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3612,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 22 14:25:00 +0000 2021',
  'id': 1440683552753033216,
  'id_str': '1440683552753033216',
  'full_text': 'We stand at an inflection point in history. The United States intends to work with partners and allies to answer these questions and help lead the world toward a more peaceful, prosperous future for all people. https://t.co/3JYwybRezw',
  'truncated': False,
  'display_text_range': [0, 210],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1440458332737654785,
     'id_str': '1440458332737654785',
     'indices': [211, 234],
     'media_url': 'http://pbs.twimg.com/media/E_2JmAlVgAE4ry3.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_2JmAlVgAE4ry3.jpg',
     'url': 'https://t.co/3JYwybRezw',
     'display_url': 'pic.twitter.com/3JYwybRezw',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1440683552753033216/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1440458332737654785,
     'id_str': '1440458332737654785',
     'indices': [211, 234],
     'media_url': 'http://pbs.twimg.com/media/E_2JmAlVgAE4ry3.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_2JmAlVgAE4ry3.jpg',
     'url': 'https://t.co/3JYwybRezw',
     'display_url': 'pic.twitter.com/3JYwybRezw',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1440683552753033216/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 32032,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1440458332737654785/vid/320x320/BhUlfUCca8N3HTWY.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1440458332737654785/vid/540x540/3MpDpMTMZ5L7ryPs.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1440458332737654785/vid/720x720/twluL7Qt8O4cBoeB.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1440458332737654785/pl/Fu9V0rgHSvOlZU6N.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1381,
  'favorite_count': 10485,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 22 01:02:00 +0000 2021',
  'id': 1440481472855494657,
  'id_str': '1440481472855494657',
  'full_text': "As we pursue diplomacy across the board, the U.S. will champion the democratic values that go to the very heart of who we are as a nation and a people—freedom, equality, opportunity, and a belief in the universal rights of all people. \n\nIt's stamped into our DNA as a nation.",
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1876,
  'favorite_count': 15090,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 21 23:12:00 +0000 2021',
  'id': 1440453789090152458,
  'id_str': '1440453789090152458',
  'full_text': 'For the first time in 20 years, the United States is not at war. We’ve turned the page.\n\nAll the unmatched strength, energy, commitment, will, and resources of our nation are now fully and squarely focused on what’s ahead of us, not what was behind. https://t.co/4n3HlIiUlY',
  'truncated': False,
  'display_text_range': [0, 249],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1440372516942336004,
     'id_str': '1440372516942336004',
     'indices': [250, 273],
     'media_url': 'http://pbs.twimg.com/media/E_07mZEVUAUrCkl.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_07mZEVUAUrCkl.jpg',
     'url': 'https://t.co/4n3HlIiUlY',
     'display_url': 'pic.twitter.com/4n3HlIiUlY',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1440453789090152458/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1440372516942336004,
     'id_str': '1440372516942336004',
     'indices': [250, 273],
     'media_url': 'http://pbs.twimg.com/media/E_07mZEVUAUrCkl.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_07mZEVUAUrCkl.jpg',
     'url': 'https://t.co/4n3HlIiUlY',
     'display_url': 'pic.twitter.com/4n3HlIiUlY',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1440453789090152458/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 54880,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1440372516942336004/pl/9JlngnXakCxqRDuc.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1440372516942336004/vid/320x320/y8kdZLq_M8qpkQgX.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1440372516942336004/vid/720x720/3VwT32m8GnI1V3J8.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1440372516942336004/vid/540x540/sX8laHI8ClsWof06.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2540,
  'favorite_count': 17273,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 21 21:33:01 +0000 2021',
  'id': 1440428877822660608,
  'id_str': '1440428877822660608',
  'full_text': 'As we recover from this crisis, we must put in place a long-term plan to increase opportunities with better jobs and higher wages; a plan that will lower the everyday costs that strain our budgets and our nation’s families.\n\nOur Build Back Better Agenda will get it done.',
  'truncated': False,
  'display_text_range': [0, 271],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1522,
  'favorite_count': 10851,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 21 18:29:59 +0000 2021',
  'id': 1440382817322475521,
  'id_str': '1440382817322475521',
  'full_text': 'RT @POTUS: It was an honor to address the UN General Assembly this morning. We stand at an inflection point in history, and the United Stat…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Sep 21 18:17:27 +0000 2021',
   'id': 1440379663411343364,
   'id_str': '1440379663411343364',
   'full_text': 'It was an honor to address the UN General Assembly this morning. We stand at an inflection point in history, and the United States is committed to working with our allies and partners to tackle the greatest challenges of our time.\n\nWe will build a better future — together. https://t.co/M7xAx72PqE',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1440379626761515008,
      'id_str': '1440379626761515008',
      'indices': [274, 297],
      'media_url': 'http://pbs.twimg.com/media/E_1Bo5rUcAAhIvu.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_1Bo5rUcAAhIvu.jpg',
      'url': 'https://t.co/M7xAx72PqE',
      'display_url': 'pic.twitter.com/M7xAx72PqE',
      'expanded_url': 'https://twitter.com/POTUS/status/1440379663411343364/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1440379626761515008,
      'id_str': '1440379626761515008',
      'indices': [274, 297],
      'media_url': 'http://pbs.twimg.com/media/E_1Bo5rUcAAhIvu.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_1Bo5rUcAAhIvu.jpg',
      'url': 'https://t.co/M7xAx72PqE',
      'display_url': 'pic.twitter.com/M7xAx72PqE',
      'expanded_url': 'https://twitter.com/POTUS/status/1440379663411343364/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2964,
   'favorite_count': 21039,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2964,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 21 18:08:04 +0000 2021',
  'id': 1440377300948643841,
  'id_str': '1440377300948643841',
  'full_text': "The evidence is clear: climate change poses an existential threat. If we don't stay below 1.5°C of global temperature rise, we're in deep trouble.  \n\nWe need to build back better by investing in clean energy, cutting emissions, and fighting climate change head on.",
  'truncated': False,
  'display_text_range': [0, 264],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3745,
  'favorite_count': 26737,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 21 01:09:00 +0000 2021',
  'id': 1440120847142895624,
  'id_str': '1440120847142895624',
  'full_text': 'This summer alone, over 100 million Americans and the communities they call home have been affected by extreme weather.  \n\nWe can’t just rebuild, we have to build back better. We have to invest in climate resilience to protect our communities and work to cut carbon emissions.',
  'truncated': False,
  'display_text_range': [0, 276],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2200,
  'favorite_count': 17145,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Sep 20 17:57:44 +0000 2021',
  'id': 1440012312480452613,
  'id_str': '1440012312480452613',
  'full_text': 'RT @POTUS: We have the tools to put this pandemic behind us, but we all have to do our part. If you haven’t yet, please get vaccinated. And…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Sep 20 13:46:14 +0000 2021',
   'id': 1439949022266015749,
   'id_str': '1439949022266015749',
   'full_text': 'We have the tools to put this pandemic behind us, but we all have to do our part. If you haven’t yet, please get vaccinated. And if you’ve gotten vaccinated, reach out to family and friends who haven’t. \n\nLet’s finish this once and for all.',
   'truncated': False,
   'display_text_range': [0, 240],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7991,
   'favorite_count': 51661,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7991,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Sep 20 15:33:01 +0000 2021',
  'id': 1439975893250740225,
  'id_str': '1439975893250740225',
  'full_text': 'Our Build Back Better Agenda will invest in working families by cutting taxes, lowering prescription drug prices and health care costs, and reducing the cost of child care. \n\nWe’ll build our economy from the bottom up and middle out.',
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2465,
  'favorite_count': 16875,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 19 15:10:03 +0000 2021',
  'id': 1439607728016609286,
  'id_str': '1439607728016609286',
  'full_text': "Past presidents have cut taxes for the wealthy and biggest corporations with the promise of economic growth.\n\nIt doesn't work.\n\nThe ultra-wealthy and corporations must pay their fair share—which will lower costs for the middle class.",
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7714,
  'favorite_count': 52681,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 18 16:33:53 +0000 2021',
  'id': 1439266438997553155,
  'id_str': '1439266438997553155',
  'full_text': 'Our Build Back Better Agenda is a historic investment in middle-class families. It will be paid for by reforming the tax code to make sure the wealthiest Americans and largest corporations pay their fair share.\n\nNo one earning under $400,000 will pay a penny more in taxes.',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3039,
  'favorite_count': 20690,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 18 14:03:01 +0000 2021',
  'id': 1439228469028794368,
  'id_str': '1439228469028794368',
  'full_text': 'Virtually all of the COVID deaths and hospitalizations are from unvaccinated people. Get your shot.',
  'truncated': False,
  'display_text_range': [0, 99],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6251,
  'favorite_count': 45096,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 17 22:07:00 +0000 2021',
  'id': 1438987881545076738,
  'id_str': '1438987881545076738',
  'full_text': "We can build an economy that gives working people a fair shot. \nWe can restore some sanity and fairness to our tax code. \nWe can make the investments that we know are long overdue in this nation. \n\nThat's exactly what my Bipartisan Infrastructure Plan does.",
  'truncated': False,
  'display_text_range': [0, 257],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2054,
  'favorite_count': 15162,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 17 19:14:01 +0000 2021',
  'id': 1438944345881812999,
  'id_str': '1438944345881812999',
  'full_text': 'Our Build Back Better agenda takes on the existential threat of climate change directly by investing in clean energy, creating good-paying, union jobs, and working to stop the climate crisis’s most disastrous impacts on working families.',
  'truncated': False,
  'display_text_range': [0, 237],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1731,
  'favorite_count': 12694,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 17 15:44:01 +0000 2021',
  'id': 1438891499463262222,
  'id_str': '1438891499463262222',
  'full_text': "Big corporations and the super wealthy have to start paying their fair share of taxes. It’s long overdue. \n\nI'm not out to punish anyone. All I'm asking is that you pay your fair share—just like middle-class folks do.",
  'truncated': False,
  'display_text_range': [0, 217],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5629,
  'favorite_count': 42372,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 17 13:39:48 +0000 2021',
  'id': 1438860239063945216,
  'id_str': '1438860239063945216',
  'full_text': 'RT @POTUS: Immigrants come to America from different circumstances, but every generation has made us stronger. This Citizenship Day serves…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Sep 17 13:32:07 +0000 2021',
   'id': 1438858304046907395,
   'id_str': '1438858304046907395',
   'full_text': 'Immigrants come to America from different circumstances, but every generation has made us stronger. This Citizenship Day serves as a reminder that it’s up to us to ensure we remain a country worthy of the dreams and aspirations of immigrants from around the world. https://t.co/1jBBqLBUop',
   'truncated': False,
   'display_text_range': [0, 264],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1438858191845175298,
      'id_str': '1438858191845175298',
      'indices': [265, 288],
      'media_url': 'http://pbs.twimg.com/media/E_fZ_smX0AI5oZW.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_fZ_smX0AI5oZW.jpg',
      'url': 'https://t.co/1jBBqLBUop',
      'display_url': 'pic.twitter.com/1jBBqLBUop',
      'expanded_url': 'https://twitter.com/POTUS/status/1438858304046907395/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1152, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1438858191845175298,
      'id_str': '1438858191845175298',
      'indices': [265, 288],
      'media_url': 'http://pbs.twimg.com/media/E_fZ_smX0AI5oZW.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_fZ_smX0AI5oZW.jpg',
      'url': 'https://t.co/1jBBqLBUop',
      'display_url': 'pic.twitter.com/1jBBqLBUop',
      'expanded_url': 'https://twitter.com/POTUS/status/1438858304046907395/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1152, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 127317,
       'variants': [{'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1438858191845175298/vid/1280x720/8VbEWJnBHSR_mn1C.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1438858191845175298/pl/lxzaaVVVwzbbDviD.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1438858191845175298/vid/640x360/oytLUxjgjtgG9T7N.mp4?tag=14'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1438858191845175298/vid/480x270/bwK-GidzxS565UVm.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004746,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3497,
   'favorite_count': 18791,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3497,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 17 01:39:00 +0000 2021',
  'id': 1438678843213037570,
  'id_str': '1438678843213037570',
  'full_text': 'When big corporations and the wealthy pay their fair share, we are able to invest in America. https://t.co/b2U1BgSdjP',
  'truncated': False,
  'display_text_range': [0, 93],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1438654183981342724,
     'id_str': '1438654183981342724',
     'indices': [94, 117],
     'media_url': 'http://pbs.twimg.com/media/E_cg2Y4WUAgTRL_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_cg2Y4WUAgTRL_.jpg',
     'url': 'https://t.co/b2U1BgSdjP',
     'display_url': 'pic.twitter.com/b2U1BgSdjP',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1438678843213037570/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1438654183981342724,
     'id_str': '1438654183981342724',
     'indices': [94, 117],
     'media_url': 'http://pbs.twimg.com/media/E_cg2Y4WUAgTRL_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_cg2Y4WUAgTRL_.jpg',
     'url': 'https://t.co/b2U1BgSdjP',
     'display_url': 'pic.twitter.com/b2U1BgSdjP',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1438678843213037570/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 19353,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1438654183981342724/vid/540x540/oCN4mlsR_dEYzk4-.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1438654183981342724/pl/KcsovxzerbqMp2XU.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1438654183981342724/vid/320x320/SHoMRlB8Qyqp3Tt0.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1438654183981342724/vid/720x720/R4spbbz-kAN52jGf.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1606,
  'favorite_count': 11787,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 16 23:41:00 +0000 2021',
  'id': 1438649149738700809,
  'id_str': '1438649149738700809',
  'full_text': "Republican governors in states like Texas and Florida are doing everything they can to undermine the public health requirements that keep people safe.\n\nThey're playing politics with the lives of their citizens, especially children. I refuse to give in to it.",
  'truncated': False,
  'display_text_range': [0, 258],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5960,
  'favorite_count': 34546,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 16 21:48:24 +0000 2021',
  'id': 1438620810491613187,
  'id_str': '1438620810491613187',
  'full_text': 'This is our moment to prove to the American people that their government works for them, not just for the big corporations and those at the very top. https://t.co/Ie9keqGYqk',
  'truncated': False,
  'display_text_range': [0, 149],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1438617443212091397,
     'id_str': '1438617443212091397',
     'indices': [150, 173],
     'media_url': 'http://pbs.twimg.com/media/E_b-_55XoAcEJHJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_b-_55XoAcEJHJ.jpg',
     'url': 'https://t.co/Ie9keqGYqk',
     'display_url': 'pic.twitter.com/Ie9keqGYqk',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1438620810491613187/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1438617443212091397,
     'id_str': '1438617443212091397',
     'indices': [150, 173],
     'media_url': 'http://pbs.twimg.com/media/E_b-_55XoAcEJHJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_b-_55XoAcEJHJ.jpg',
     'url': 'https://t.co/Ie9keqGYqk',
     'display_url': 'pic.twitter.com/Ie9keqGYqk',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1438620810491613187/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 43710,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1438617443212091397/vid/540x540/hATJEM6GDVpU01VK.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1438617443212091397/vid/320x320/t44833R_0j1tmOU3.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1438617443212091397/vid/720x720/ThkWSu1DVcOfBw2M.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1438617443212091397/pl/dnoXEiESvXpsj6Pd.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1786,
  'favorite_count': 11121,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 16 16:09:05 +0000 2021',
  'id': 1438535418841116676,
  'id_str': '1438535418841116676',
  'full_text': 'The Build Back Better Agenda will lower the costs of:\n✅ Child care\n✅ Higher education\n✅ Prescription drugs\n✅ Health care\n✅ Housing\n\nAnd we’ll do it by making the wealthiest and large corporations pay their fair share.',
  'truncated': False,
  'display_text_range': [0, 217],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155527,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2212,
  'favorite_count': 15236,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 15 19:28:50 +0000 2021',
  'id': 1438223300489056261,
  'id_str': '1438223300489056261',
  'full_text': 'Congratulations Governor @GavinNewsom on defeating the recall. This vote is a resounding win for the approach that he and I share to beating the pandemic: strong vaccine requirements, steps to reopen schools safely, and plans to help those who get sick.',
  'truncated': False,
  'display_text_range': [0, 253],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'GavinNewsom',
     'name': 'Gavin Newsom',
     'id': 11347122,
     'id_str': '11347122',
     'indices': [25, 37]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6667,
  'favorite_count': 67903,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 14 21:00:26 +0000 2021',
  'id': 1437883965168312322,
  'id_str': '1437883965168312322',
  'full_text': 'California, the eyes of the nation are on you. Vote NO on the recall before polls close at 8pm to keep @GavinNewsom as governor and keep moving our country forward. https://t.co/uV4UbFsSBF',
  'truncated': False,
  'display_text_range': [0, 164],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'GavinNewsom',
     'name': 'Gavin Newsom',
     'id': 11347122,
     'id_str': '11347122',
     'indices': [103, 115]}],
   'urls': [],
   'media': [{'id': 1437883892506243079,
     'id_str': '1437883892506243079',
     'indices': [165, 188],
     'media_url': 'http://pbs.twimg.com/media/E_Rj18QWQAUZkkZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_Rj18QWQAUZkkZ.jpg',
     'url': 'https://t.co/uV4UbFsSBF',
     'display_url': 'pic.twitter.com/uV4UbFsSBF',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1437883965168312322/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1437883892506243079,
     'id_str': '1437883892506243079',
     'indices': [165, 188],
     'media_url': 'http://pbs.twimg.com/media/E_Rj18QWQAUZkkZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_Rj18QWQAUZkkZ.jpg',
     'url': 'https://t.co/uV4UbFsSBF',
     'display_url': 'pic.twitter.com/uV4UbFsSBF',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1437883965168312322/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 41308,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437883892506243079/vid/720x720/wbr7K8453WsK00XD.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1437883892506243079/pl/tr57Q5IRCaNaONAH.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437883892506243079/vid/320x320/W98Rst1OX4D9i1nC.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437883892506243079/vid/540x540/7QPOFvJOoMRywEO7.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2342,
  'favorite_count': 13130,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 14 18:15:07 +0000 2021',
  'id': 1437842363678957584,
  'id_str': '1437842363678957584',
  'full_text': 'California, Election Day is today. On behalf of people all across America, don’t take anything for granted. If you want to vote in person, make sure you know where you’re going to vote. If you’ve already voted, make sure your family and friends are voting. Vote no on the recall. https://t.co/Y9DFAZej6S',
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1437842360356978688,
     'id_str': '1437842360356978688',
     'indices': [280, 303],
     'media_url': 'http://pbs.twimg.com/media/E_Q-AjwWQAAft3t.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_Q-AjwWQAAft3t.jpg',
     'url': 'https://t.co/Y9DFAZej6S',
     'display_url': 'pic.twitter.com/Y9DFAZej6S',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1437842363678957584/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 674, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 382, 'resize': 'fit'},
      'large': {'w': 2014, 'h': 1132, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1437842360356978688,
     'id_str': '1437842360356978688',
     'indices': [280, 303],
     'media_url': 'http://pbs.twimg.com/media/E_Q-AjwWQAAft3t.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_Q-AjwWQAAft3t.jpg',
     'url': 'https://t.co/Y9DFAZej6S',
     'display_url': 'pic.twitter.com/Y9DFAZej6S',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1437842363678957584/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 674, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 382, 'resize': 'fit'},
      'large': {'w': 2014, 'h': 1132, 'resize': 'fit'}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2722,
  'favorite_count': 15492,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 14 16:32:00 +0000 2021',
  'id': 1437816410659430402,
  'id_str': '1437816410659430402',
  'full_text': 'California, vote to keep @GavinNewsom your governor. The rest of America is counting on you, and so am I. https://t.co/mYnR2isUjI',
  'truncated': False,
  'display_text_range': [0, 105],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'GavinNewsom',
     'name': 'Gavin Newsom',
     'id': 11347122,
     'id_str': '11347122',
     'indices': [25, 37]}],
   'urls': [],
   'media': [{'id': 1437806986201010186,
     'id_str': '1437806986201010186',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/E_QeIfHWQAUg38l.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_QeIfHWQAUg38l.jpg',
     'url': 'https://t.co/mYnR2isUjI',
     'display_url': 'pic.twitter.com/mYnR2isUjI',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1437816410659430402/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1437806986201010186,
     'id_str': '1437806986201010186',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/E_QeIfHWQAUg38l.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_QeIfHWQAUg38l.jpg',
     'url': 'https://t.co/mYnR2isUjI',
     'display_url': 'pic.twitter.com/mYnR2isUjI',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1437816410659430402/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 3962,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437806986201010186/vid/720x720/CO35w8EIjXbrZTAJ.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437806986201010186/vid/540x540/u4m5pCqr7mObvKpJ.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1437806986201010186/pl/uf7DId5MeeP3JXIE.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437806986201010186/vid/320x320/gwZycLjvz3sLdEah.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://iwillvote.com/?state=CA'}},
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2699,
  'favorite_count': 15459,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 14 13:14:37 +0000 2021',
  'id': 1437766739627057159,
  'id_str': '1437766739627057159',
  'full_text': 'California, today is Election Day. We’re counting on you to vote NO on the recall to keep @GavinNewsom in office and California moving forward.\n\nPolls are open until 8pm. Make your voice heard.',
  'truncated': False,
  'display_text_range': [0, 193],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'GavinNewsom',
     'name': 'Gavin Newsom',
     'id': 11347122,
     'id_str': '11347122',
     'indices': [90, 102]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6654,
  'favorite_count': 37988,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Sep 14 02:27:02 +0000 2021',
  'id': 1437603766790918146,
  'id_str': '1437603766790918146',
  'full_text': "Tomorrow's Election Day—so I’m here with @GavinNewsom to ask Californians to vote no on the recall. Help protect the progress we’ve made. https://t.co/GDWCT1Z4zZ",
  'truncated': False,
  'display_text_range': [0, 161],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'GavinNewsom',
     'name': 'Gavin Newsom',
     'id': 11347122,
     'id_str': '11347122',
     'indices': [41, 53]}],
   'urls': [{'url': 'https://t.co/GDWCT1Z4zZ',
     'expanded_url': 'https://twitter.com/i/broadcasts/1vAxRwQeoEvKl',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [138, 161]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3153,
  'favorite_count': 15605,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 12 20:36:17 +0000 2021',
  'id': 1437153113035747338,
  'id_str': '1437153113035747338',
  'full_text': 'Vaccines are free, safe, and convenient. https://t.co/mJS9AteS8o',
  'truncated': False,
  'display_text_range': [0, 40],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1437153042617470979,
     'id_str': '1437153042617470979',
     'indices': [41, 64],
     'media_url': 'http://pbs.twimg.com/media/E_HLIutXoAgbk5_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_HLIutXoAgbk5_.jpg',
     'url': 'https://t.co/mJS9AteS8o',
     'display_url': 'pic.twitter.com/mJS9AteS8o',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1437153113035747338/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1437153042617470979,
     'id_str': '1437153042617470979',
     'indices': [41, 64],
     'media_url': 'http://pbs.twimg.com/media/E_HLIutXoAgbk5_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E_HLIutXoAgbk5_.jpg',
     'url': 'https://t.co/mJS9AteS8o',
     'display_url': 'pic.twitter.com/mJS9AteS8o',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1437153113035747338/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 53554,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437153042617470979/vid/320x320/zwrxDe-A9psrxgEm.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437153042617470979/vid/540x540/J50FOU_Lzz3bTY5d.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1437153042617470979/vid/720x720/FACyFpuEZ43jGTV2.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1437153042617470979/pl/tz0llLoTQhXNB75o.m3u8?tag=14'}]},
     'additional_media_info': {'title': 'Joe Biden: Vaccines are free, safe, and convenient',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5133,
  'favorite_count': 35504,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Sep 12 18:30:37 +0000 2021',
  'id': 1437121485366308864,
  'id_str': '1437121485366308864',
  'full_text': 'RT @POTUS: We honor all those lost on that dark day, 20 years ago. And we honor those who risked and gave their lives in the minutes, hours…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Sep 12 16:22:38 +0000 2021',
   'id': 1437089279524720645,
   'id_str': '1437089279524720645',
   'full_text': 'We honor all those lost on that dark day, 20 years ago. And we honor those who risked and gave their lives in the minutes, hours, months, and years afterword. We will never forget. https://t.co/gjMLu9ypqQ',
   'truncated': False,
   'display_text_range': [0, 180],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1437089243579490306,
      'id_str': '1437089243579490306',
      'indices': [181, 204],
      'media_url': 'http://pbs.twimg.com/media/E_GRFMKWYAo4L37.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_GRFMKWYAo4L37.jpg',
      'url': 'https://t.co/gjMLu9ypqQ',
      'display_url': 'pic.twitter.com/gjMLu9ypqQ',
      'expanded_url': 'https://twitter.com/POTUS/status/1437089279524720645/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1437089243579490306,
      'id_str': '1437089243579490306',
      'indices': [181, 204],
      'media_url': 'http://pbs.twimg.com/media/E_GRFMKWYAo4L37.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_GRFMKWYAo4L37.jpg',
      'url': 'https://t.co/gjMLu9ypqQ',
      'display_url': 'pic.twitter.com/gjMLu9ypqQ',
      'expanded_url': 'https://twitter.com/POTUS/status/1437089279524720645/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 21605,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1437089243579490306/vid/720x720/OakkFhludPeRT_5H.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1437089243579490306/vid/320x320/Jr0L62i7ysp8cCs3.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1437089243579490306/vid/540x540/h4G52HZLLPg4pIIB.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1437089243579490306/pl/kLFXB8EErjG094HE.m3u8?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22006283,
    'friends_count': 12,
    'listed_count': 17866,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2984,
   'favorite_count': 23798,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2984,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 11 19:29:41 +0000 2021',
  'id': 1436773965041750019,
  'id_str': '1436773965041750019',
  'full_text': 'RT @POTUS: We honor those lives lost on Flight 93 on that dark day in history 20 years ago. No matter how much time has passed, these comme…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Sep 11 19:26:56 +0000 2021',
   'id': 1436773270674714627,
   'id_str': '1436773270674714627',
   'full_text': 'We honor those lives lost on Flight 93 on that dark day in history 20 years ago. No matter how much time has passed, these commemorations bring everything painfully back for their loved ones.\n\nYour courage gives us courage. https://t.co/MzXiTba13t',
   'truncated': False,
   'display_text_range': [0, 223],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1436773261300441088,
      'id_str': '1436773261300441088',
      'indices': [224, 247],
      'media_url': 'http://pbs.twimg.com/media/E_BxqzaXoAA05QE.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_BxqzaXoAA05QE.jpg',
      'url': 'https://t.co/MzXiTba13t',
      'display_url': 'pic.twitter.com/MzXiTba13t',
      'expanded_url': 'https://twitter.com/POTUS/status/1436773270674714627/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1436773261300441088,
      'id_str': '1436773261300441088',
      'indices': [224, 247],
      'media_url': 'http://pbs.twimg.com/media/E_BxqzaXoAA05QE.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_BxqzaXoAA05QE.jpg',
      'url': 'https://t.co/MzXiTba13t',
      'display_url': 'pic.twitter.com/MzXiTba13t',
      'expanded_url': 'https://twitter.com/POTUS/status/1436773270674714627/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22006283,
    'friends_count': 12,
    'listed_count': 17866,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4534,
   'favorite_count': 39593,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4534,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 11 16:34:09 +0000 2021',
  'id': 1436729790225162250,
  'id_str': '1436729790225162250',
  'full_text': 'RT @POTUS: We never forget.\n\nWe never forget the children who have grown up without parents. Parents who have suffered without children. Hu…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Sep 11 16:12:05 +0000 2021',
   'id': 1436724236945592321,
   'id_str': '1436724236945592321',
   'full_text': 'We never forget.\n\nWe never forget the children who have grown up without parents. Parents who have suffered without children. Husbands and wives who had to find a way forward without their partners. Brothers, sisters, loved ones.\n\nJill and I hold you close in our hearts. https://t.co/ydppFkpV4y',
   'truncated': False,
   'display_text_range': [0, 271],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1436724228707995650,
      'id_str': '1436724228707995650',
      'indices': [272, 295],
      'media_url': 'http://pbs.twimg.com/media/E_BFEuxWUAIv5qH.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_BFEuxWUAIv5qH.jpg',
      'url': 'https://t.co/ydppFkpV4y',
      'display_url': 'pic.twitter.com/ydppFkpV4y',
      'expanded_url': 'https://twitter.com/POTUS/status/1436724236945592321/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1436724228707995650,
      'id_str': '1436724228707995650',
      'indices': [272, 295],
      'media_url': 'http://pbs.twimg.com/media/E_BFEuxWUAIv5qH.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E_BFEuxWUAIv5qH.jpg',
      'url': 'https://t.co/ydppFkpV4y',
      'display_url': 'pic.twitter.com/ydppFkpV4y',
      'expanded_url': 'https://twitter.com/POTUS/status/1436724236945592321/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22006283,
    'friends_count': 12,
    'listed_count': 17866,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 13256,
   'favorite_count': 96468,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 13256,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 11 13:03:01 +0000 2021',
  'id': 1436676656169635847,
  'id_str': '1436676656169635847',
  'full_text': 'Twenty years ago, nearly 3,000 lives were cut short by an unspeakable act of cowardice and hatred on 9/11. As a nation, we must never forget those we lost during one of the darkest moments in our history and the enduring pain of their families and loved ones.',
  'truncated': False,
  'display_text_range': [0, 259],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 11126,
  'favorite_count': 98212,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 11 00:45:02 +0000 2021',
  'id': 1436490934770929706,
  'id_str': '1436490934770929706',
  'full_text': 'Our new COVID-19 plan will reduce the number of unvaccinated Americans, decrease hospitalizations and deaths, allow our children to go to schools safely, and keep our economy strong by keeping businesses open. \n\nWe will spare no effort in saving lives and beating this virus.',
  'truncated': False,
  'display_text_range': [0, 275],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4691,
  'favorite_count': 38484,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 10 16:35:13 +0000 2021',
  'id': 1436367668911788060,
  'id_str': '1436367668911788060',
  'full_text': 'Our plan takes on the elected officials in states that are undermining the life-saving actions we need to take to defeat COVID-19. \n\nIf these governors won’t help us beat the pandemic, we will get them out of the way. https://t.co/8XcibeNeV4',
  'truncated': False,
  'display_text_range': [0, 217],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1436367619184070659,
     'id_str': '1436367619184070659',
     'indices': [218, 241],
     'media_url': 'http://pbs.twimg.com/media/E-8D-UEX0Bsb3f8.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-8D-UEX0Bsb3f8.jpg',
     'url': 'https://t.co/8XcibeNeV4',
     'display_url': 'pic.twitter.com/8XcibeNeV4',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1436367668911788060/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1436367619184070659,
     'id_str': '1436367619184070659',
     'indices': [218, 241],
     'media_url': 'http://pbs.twimg.com/media/E-8D-UEX0Bsb3f8.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-8D-UEX0Bsb3f8.jpg',
     'url': 'https://t.co/8XcibeNeV4',
     'display_url': 'pic.twitter.com/8XcibeNeV4',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1436367668911788060/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 33300,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1436367619184070659/vid/540x540/63DRlPtVTin1-cLs.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1436367619184070659/vid/320x320/lBbuAcd3v4bYte27.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1436367619184070659/pl/nLJiV9qSsGYtEhZ7.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1436367619184070659/vid/720x720/Tz2POT8awRzLIC9W.mp4?tag=14'}]},
     'additional_media_info': {'title': 'If these governors won’t help us beat the pandemic, we will get them out of the way. ',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2557,
  'favorite_count': 15844,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 10 14:52:05 +0000 2021',
  'id': 1436341714264985601,
  'id_str': '1436341714264985601',
  'full_text': "My first responsibility is to protect the American people and make sure we have vaccines for every American, including enough boosters. As soon as they're authorized, those eligible will be able to get a free booster right away in tens of thousands of sites across the country.",
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5331,
  'favorite_count': 48940,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 10 02:32:49 +0000 2021',
  'id': 1436155670978568196,
  'id_str': '1436155670978568196',
  'full_text': 'The Department of Labor is developing an emergency rule to require that all employers with 100 or more employees ensure their workforces are fully vaccinated or show a negative test at least once a week. https://t.co/Yn2kDf63FU',
  'truncated': False,
  'display_text_range': [0, 227],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1436114197981581315,
     'id_str': '1436114197981581315',
     'indices': [204, 227],
     'media_url': 'http://pbs.twimg.com/media/E-4aToTXMAIy2Mb.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-4aToTXMAIy2Mb.jpg',
     'url': 'https://t.co/Yn2kDf63FU',
     'display_url': 'pic.twitter.com/Yn2kDf63FU',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1436114260493541378/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1436114260493541378,
     'source_status_id_str': '1436114260493541378',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1436114197981581315,
     'id_str': '1436114197981581315',
     'indices': [204, 227],
     'media_url': 'http://pbs.twimg.com/media/E-4aToTXMAIy2Mb.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-4aToTXMAIy2Mb.jpg',
     'url': 'https://t.co/Yn2kDf63FU',
     'display_url': 'pic.twitter.com/Yn2kDf63FU',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1436114260493541378/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1436114260493541378,
     'source_status_id_str': '1436114260493541378',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 41650,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1436114197981581315/vid/540x540/TX7wrMR-sxj-yUkK.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1436114197981581315/vid/720x720/fAUycjSEzuOc4yKZ.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1436114197981581315/pl/Kfw5DsVVTg4c-u_7.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1436114197981581315/vid/320x320/-n1fLTHswsk0pp5m.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254971,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2956,
  'favorite_count': 26075,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 09 22:25:38 +0000 2021',
  'id': 1436093465499144193,
  'id_str': '1436093465499144193',
  'full_text': 'RT @POTUS: Right now, local school officials are trying to keep children safe in a pandemic while their governor picks a fight with them an…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Sep 09 21:35:59 +0000 2021',
   'id': 1436080973922373639,
   'id_str': '1436080973922373639',
   'full_text': 'Right now, local school officials are trying to keep children safe in a pandemic while their governor picks a fight with them and even threatens their salary and job.\n\nIf they will not help us beat the pandemic, I will use my powers as president to get them out of the way.',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22006283,
    'friends_count': 12,
    'listed_count': 17866,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7742,
   'favorite_count': 53914,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7742,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 09 16:14:02 +0000 2021',
  'id': 1435999951230840842,
  'id_str': '1435999951230840842',
  'full_text': 'The Bipartisan Infrastructure Deal and the Build Back Better Agenda will:\n✅Create millions of good-paying jobs rebuilding roads and bridges\n✅Lower taxes for working families\n✅Lower costs for working families, including child care, elder care, community college, pre-K, and more',
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1735,
  'favorite_count': 10407,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 08 23:01:00 +0000 2021',
  'id': 1435739980706500609,
  'id_str': '1435739980706500609',
  'full_text': "The pandemic of the unvaccinated is a tragedy that is preventable. People are dying and will die from COVID-19 who don't have to. \n\nIf you haven't gotten vaccinated, do it now. It could save your life and the lives of those you love.",
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7115,
  'favorite_count': 51796,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 08 14:08:00 +0000 2021',
  'id': 1435605847225339911,
  'id_str': '1435605847225339911',
  'full_text': 'Folks, the evidence is clear, climate change poses an existential threat to our lives and our economy. But we can stop it from getting worse. \n\nOur Build Back Better plan will make investments to fight the climate crisis, cut emissions, and make our infrastructure more resilient.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3673,
  'favorite_count': 30174,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 08 13:46:23 +0000 2021',
  'id': 1435600403488518150,
  'id_str': '1435600403488518150',
  'full_text': 'RT @POTUS: Yesterday, I toured communities impacted by Ida in New Jersey and New York. As I told folks on the ground, we’re committed to su…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34068993,
   'friends_count': 48,
   'listed_count': 39071,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Sep 08 12:49:35 +0000 2021',
   'id': 1435586111800238080,
   'id_str': '1435586111800238080',
   'full_text': 'Yesterday, I toured communities impacted by Ida in New Jersey and New York. As I told folks on the ground, we’re committed to supporting their recovery and to building back better with more resilient infrastructure. We won’t rest until the job is done. https://t.co/BbK9je27tj',
   'truncated': False,
   'display_text_range': [0, 252],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1435586085623631882,
      'id_str': '1435586085623631882',
      'indices': [253, 276],
      'media_url': 'http://pbs.twimg.com/media/E-w58FYXEAoq64C.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E-w58FYXEAoq64C.jpg',
      'url': 'https://t.co/BbK9je27tj',
      'display_url': 'pic.twitter.com/BbK9je27tj',
      'expanded_url': 'https://twitter.com/POTUS/status/1435586111800238080/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1435586085623631882,
      'id_str': '1435586085623631882',
      'indices': [253, 276],
      'media_url': 'http://pbs.twimg.com/media/E-w58FYXEAoq64C.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E-w58FYXEAoq64C.jpg',
      'url': 'https://t.co/BbK9je27tj',
      'display_url': 'pic.twitter.com/BbK9je27tj',
      'expanded_url': 'https://twitter.com/POTUS/status/1435586111800238080/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}},
     {'id': 1435586091680247822,
      'id_str': '1435586091680247822',
      'indices': [253, 276],
      'media_url': 'http://pbs.twimg.com/media/E-w58b8XsA4e-n7.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E-w58b8XsA4e-n7.jpg',
      'url': 'https://t.co/BbK9je27tj',
      'display_url': 'pic.twitter.com/BbK9je27tj',
      'expanded_url': 'https://twitter.com/POTUS/status/1435586111800238080/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}},
     {'id': 1435586097598320641,
      'id_str': '1435586097598320641',
      'indices': [253, 276],
      'media_url': 'http://pbs.twimg.com/media/E-w58x_WUAEJtkV.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E-w58x_WUAEJtkV.jpg',
      'url': 'https://t.co/BbK9je27tj',
      'display_url': 'pic.twitter.com/BbK9je27tj',
      'expanded_url': 'https://twitter.com/POTUS/status/1435586111800238080/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}},
     {'id': 1435586103839428611,
      'id_str': '1435586103839428611',
      'indices': [253, 276],
      'media_url': 'http://pbs.twimg.com/media/E-w59JPWEAMy37-.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E-w59JPWEAMy37-.jpg',
      'url': 'https://t.co/BbK9je27tj',
      'display_url': 'pic.twitter.com/BbK9je27tj',
      'expanded_url': 'https://twitter.com/POTUS/status/1435586111800238080/photo/1',
      'type': 'photo',
      'sizes': {'small': {'w': 680, 'h': 422, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1270, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 744, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22006283,
    'friends_count': 12,
    'listed_count': 17866,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1801,
   'favorite_count': 12809,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1801,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Sep 06 15:00:42 +0000 2021',
  'id': 1434894331845005318,
  'id_str': '1434894331845005318',
  'full_text': 'The middle class built America, and unions built the middle class.  \n\nThis Labor Day, we honor all the workers, and their enduring movement, that keep our economy moving and are the heart, soul, and spine of this nation. https://t.co/mzLEKfW7j8',
  'truncated': False,
  'display_text_range': [0, 220],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1434894294431764480,
     'id_str': '1434894294431764480',
     'indices': [221, 244],
     'media_url': 'http://pbs.twimg.com/media/E-nEyYxXsAYCzki.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-nEyYxXsAYCzki.jpg',
     'url': 'https://t.co/mzLEKfW7j8',
     'display_url': 'pic.twitter.com/mzLEKfW7j8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1434894331845005318/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1434894294431764480,
     'id_str': '1434894294431764480',
     'indices': [221, 244],
     'media_url': 'http://pbs.twimg.com/media/E-nEyYxXsAYCzki.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-nEyYxXsAYCzki.jpg',
     'url': 'https://t.co/mzLEKfW7j8',
     'display_url': 'pic.twitter.com/mzLEKfW7j8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1434894331845005318/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 14114,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1434894294431764480/pl/t4EuVl7-xKvA-Rqt.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1434894294431764480/vid/320x320/f-lMNWfrrAbXXGTM.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1434894294431764480/vid/540x540/aO9r2Z43Jckw5IrE.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1434894294431764480/vid/720x720/7pLd_kdlEReA2umA.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2071,
  'favorite_count': 13780,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Sep 04 16:17:00 +0000 2021',
  'id': 1434188759747211267,
  'id_str': '1434188759747211267',
  'full_text': 'RT @POTUS: I know some folks are hesitant to get vaccinated, but the vaccine is safe, effective, and the best way to protect yourself and t…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Sep 04 16:08:26 +0000 2021',
   'id': 1434186600234237958,
   'id_str': '1434186600234237958',
   'full_text': 'I know some folks are hesitant to get vaccinated, but the vaccine is safe, effective, and the best way to protect yourself and those you love. I sat down with Stephanie, who got the Pfizer vaccine after it received its full FDA authorization, to talk about her experience. https://t.co/osdgY6Jggi',
   'truncated': False,
   'display_text_range': [0, 272],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1434186512523046918,
      'id_str': '1434186512523046918',
      'indices': [273, 296],
      'media_url': 'http://pbs.twimg.com/media/E-dBG-JXIAIMb3N.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E-dBG-JXIAIMb3N.jpg',
      'url': 'https://t.co/osdgY6Jggi',
      'display_url': 'pic.twitter.com/osdgY6Jggi',
      'expanded_url': 'https://twitter.com/POTUS/status/1434186600234237958/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1434186512523046918,
      'id_str': '1434186512523046918',
      'indices': [273, 296],
      'media_url': 'http://pbs.twimg.com/media/E-dBG-JXIAIMb3N.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E-dBG-JXIAIMb3N.jpg',
      'url': 'https://t.co/osdgY6Jggi',
      'display_url': 'pic.twitter.com/osdgY6Jggi',
      'expanded_url': 'https://twitter.com/POTUS/status/1434186600234237958/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 138708,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1434186512523046918/vid/640x360/F_7sAonmmi7MBGnd.mp4?tag=14'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1434186512523046918/vid/480x270/KIqMpThMMnGcFRaa.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1434186512523046918/pl/pBnxeMDsYSWGnPgd.m3u8?tag=14'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1434186512523046918/vid/1280x720/yBCcRj78bnsemVDP.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3212,
   'favorite_count': 16959,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3212,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Sep 03 20:34:03 +0000 2021',
  'id': 1433891056953790482,
  'id_str': '1433891056953790482',
  'full_text': 'We are now the only developed country in the world whose economy is bigger than it was before the pandemic. Our economic plan is working. https://t.co/Xj715N5rx7',
  'truncated': False,
  'display_text_range': [0, 161],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1433889963674902537,
     'id_str': '1433889963674902537',
     'indices': [138, 161],
     'media_url': 'http://pbs.twimg.com/media/E-YzXXMXECArlXC.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-YzXXMXECArlXC.jpg',
     'url': 'https://t.co/Xj715N5rx7',
     'display_url': 'pic.twitter.com/Xj715N5rx7',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1433890013146648579/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1433890013146648579,
     'source_status_id_str': '1433890013146648579',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1433889963674902537,
     'id_str': '1433889963674902537',
     'indices': [138, 161],
     'media_url': 'http://pbs.twimg.com/media/E-YzXXMXECArlXC.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-YzXXMXECArlXC.jpg',
     'url': 'https://t.co/Xj715N5rx7',
     'display_url': 'pic.twitter.com/Xj715N5rx7',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1433890013146648579/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1433890013146648579,
     'source_status_id_str': '1433890013146648579',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 29913,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1433889963674902537/vid/320x320/R3GwK-p6OnJvQ9mP.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1433889963674902537/vid/540x540/oXbH4ZPQCSGvf_5l.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1433889963674902537/pl/PVSinc2L_RO8kA31.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1433889963674902537/vid/720x720/oU9ZoiOSxsc7pdNN.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3109,
  'favorite_count': 23806,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 02 22:50:01 +0000 2021',
  'id': 1433562887298199555,
  'id_str': '1433562887298199555',
  'full_text': "The Supreme Court's overnight ruling is an unprecedented assault on constitutional rights and requires an immediate response.\n\nWe will launch a whole-of-government effort to respond, looking at what steps we can take to ensure that Texans have access to safe and legal abortions.",
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9567,
  'favorite_count': 77325,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 02 21:46:25 +0000 2021',
  'id': 1433546883205578756,
  'id_str': '1433546883205578756',
  'full_text': "To everyone who is still in harm's way and for all those struggling to deal with the aftermath of the storms and fires, keep the faith. We’re going to stand with you for as long as it takes to recover and rebuild.",
  'truncated': False,
  'display_text_range': [0, 213],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2256,
  'favorite_count': 21169,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Sep 02 19:43:40 +0000 2021',
  'id': 1433515992492253187,
  'id_str': '1433515992492253187',
  'full_text': 'RT @POTUS: I want to express my heartfelt thanks to all the first responders and everyone working through the night to save lives and get t…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Sep 02 19:39:46 +0000 2021',
   'id': 1433515010106462212,
   'id_str': '1433515010106462212',
   'full_text': 'I want to express my heartfelt thanks to all the first responders and everyone working through the night to save lives and get the power back on following last night’s storms. @FEMA is on the ground and ready to provide all the assistance that’s needed.',
   'truncated': False,
   'display_text_range': [0, 253],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'fema',
      'name': 'FEMA',
      'id': 16669075,
      'id_str': '16669075',
      'indices': [176, 181]}],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2236,
   'favorite_count': 18888,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2236,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 01 21:44:17 +0000 2021',
  'id': 1433183957424689157,
  'id_str': '1433183957424689157',
  'full_text': 'Texas law SB8 will significantly impair people’s access to the health care they need—particularly for communities of color and individuals with low incomes.\n\nWe are deeply committed to the constitutional right established in Roe v. Wade and will protect and defend that right.',
  'truncated': False,
  'display_text_range': [0, 276],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6339,
  'favorite_count': 44583,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 01 13:44:53 +0000 2021',
  'id': 1433063313362104325,
  'id_str': '1433063313362104325',
  'full_text': 'I was not going to extend this forever war. https://t.co/QoDLRA4Hqr',
  'truncated': False,
  'display_text_range': [0, 67],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1432887938774446081,
     'id_str': '1432887938774446081',
     'indices': [44, 67],
     'media_url': 'http://pbs.twimg.com/media/E-KkB8rWEAM1H_P.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-KkB8rWEAM1H_P.jpg',
     'url': 'https://t.co/QoDLRA4Hqr',
     'display_url': 'pic.twitter.com/QoDLRA4Hqr',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1432887989689008130/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1432887989689008130,
     'source_status_id_str': '1432887989689008130',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1432887938774446081,
     'id_str': '1432887938774446081',
     'indices': [44, 67],
     'media_url': 'http://pbs.twimg.com/media/E-KkB8rWEAM1H_P.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-KkB8rWEAM1H_P.jpg',
     'url': 'https://t.co/QoDLRA4Hqr',
     'display_url': 'pic.twitter.com/QoDLRA4Hqr',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1432887989689008130/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1432887989689008130,
     'source_status_id_str': '1432887989689008130',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 31715,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1432887938774446081/vid/720x720/Nm-dUSDkamhkJWEf.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1432887938774446081/pl/WpYgB0gnygjWzgAR.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1432887938774446081/vid/540x540/B5DjGicIJlD09IFP.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1432887938774446081/vid/320x320/o6biV2lUkMkkJBpr.mp4?tag=14'}]},
     'additional_media_info': {'title': "President Biden's decision to leave Afghanistan",
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2129,
  'favorite_count': 21655,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 01 01:54:00 +0000 2021',
  'id': 1432884413235347462,
  'id_str': '1432884413235347462',
  'full_text': "This decision about Afghanistan is not just about Afghanistan. It's about ending an era of major military operations to remake other countries.",
  'truncated': False,
  'display_text_range': [0, 143],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 10269,
  'favorite_count': 107468,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Sep 01 01:21:10 +0000 2021',
  'id': 1432876149437255683,
  'id_str': '1432876149437255683',
  'full_text': 'There is nothing low-grade, low-risk, or low-cost about any war. It was time to end the war in Afghanistan. https://t.co/jAGbWnBzol',
  'truncated': False,
  'display_text_range': [0, 107],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1432876084421447685,
     'id_str': '1432876084421447685',
     'indices': [108, 131],
     'media_url': 'http://pbs.twimg.com/media/E-KZQw_XoAQPLGH.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-KZQw_XoAQPLGH.jpg',
     'url': 'https://t.co/jAGbWnBzol',
     'display_url': 'pic.twitter.com/jAGbWnBzol',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1432876149437255683/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1432876084421447685,
     'id_str': '1432876084421447685',
     'indices': [108, 131],
     'media_url': 'http://pbs.twimg.com/media/E-KZQw_XoAQPLGH.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E-KZQw_XoAQPLGH.jpg',
     'url': 'https://t.co/jAGbWnBzol',
     'display_url': 'pic.twitter.com/jAGbWnBzol',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1432876149437255683/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 45420,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1432876084421447685/vid/720x720/RyNgvza5iN1xS5F9.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1432876084421447685/vid/540x540/H_H3bX4OsD_NLHO3.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1432876084421447685/vid/320x320/gECU0wqCuaAcgJ38.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1432876084421447685/pl/lpW44_In3hssrnGW.m3u8?tag=14'}]},
     'additional_media_info': {'title': 'Remarks by President Biden on the End of the War in Afghanistan',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2649,
  'favorite_count': 22750,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Aug 31 02:21:59 +0000 2021',
  'id': 1432529067153186816,
  'id_str': '1432529067153186816',
  'full_text': 'RT @POTUS: The past 17 days have seen our troops execute the largest airlift in US history. They have done it with unmatched courage, profe…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Aug 30 22:05:34 +0000 2021',
   'id': 1432464536918007808,
   'id_str': '1432464536918007808',
   'full_text': 'The past 17 days have seen our troops execute the largest airlift in US history. They have done it with unmatched courage, professionalism, and resolve. Now, our 20-year military presence in Afghanistan has ended.\n\nMy full statement: https://t.co/kfLkzQtEzp',
   'truncated': False,
   'display_text_range': [0, 257],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/kfLkzQtEzp',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/statements-releases/2021/08/30/statement-by-president-joe-biden/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [234, 257]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8348,
   'favorite_count': 50048,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8348,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Aug 29 23:24:28 +0000 2021',
  'id': 1432122004543508480,
  'id_str': '1432122004543508480',
  'full_text': 'RT @POTUS: The 13 service members that we lost were heroes who made the ultimate sacrifice in service of our highest American ideals and wh…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Aug 29 20:32:25 +0000 2021',
   'id': 1432078707410276360,
   'id_str': '1432078707410276360',
   'full_text': 'The 13 service members that we lost were heroes who made the ultimate sacrifice in service of our highest American ideals and while saving the lives of others. Our sacred obligation to the families of these heroes will last forever. https://t.co/lPx4a4ebS7',
   'truncated': False,
   'display_text_range': [0, 232],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1432078702117011469,
      'id_str': '1432078702117011469',
      'indices': [233, 256],
      'media_url': 'http://pbs.twimg.com/media/E9_D_foWQA07-YJ.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E9_D_foWQA07-YJ.jpg',
      'url': 'https://t.co/lPx4a4ebS7',
      'display_url': 'pic.twitter.com/lPx4a4ebS7',
      'expanded_url': 'https://twitter.com/POTUS/status/1432078707410276360/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1432078702117011469,
      'id_str': '1432078702117011469',
      'indices': [233, 256],
      'media_url': 'http://pbs.twimg.com/media/E9_D_foWQA07-YJ.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E9_D_foWQA07-YJ.jpg',
      'url': 'https://t.co/lPx4a4ebS7',
      'display_url': 'pic.twitter.com/lPx4a4ebS7',
      'expanded_url': 'https://twitter.com/POTUS/status/1432078707410276360/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11779,
   'favorite_count': 102875,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11779,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Aug 28 19:03:49 +0000 2021',
  'id': 1431694025136955394,
  'id_str': '1431694025136955394',
  'full_text': 'RT @POTUS: I said we would go after the group responsible for the attack on our troops and innocent civilians in Kabul, and we have. My ful…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Aug 28 19:03:06 +0000 2021',
   'id': 1431693843980771335,
   'id_str': '1431693843980771335',
   'full_text': 'I said we would go after the group responsible for the attack on our troops and innocent civilians in Kabul, and we have. My full statement on the strike that U.S. forces took last night against the terrorist group ISIS-K in Afghanistan: https://t.co/hOb6xQ4ZZv',
   'truncated': False,
   'display_text_range': [0, 261],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/hOb6xQ4ZZv',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/statements-releases/2021/08/28/statement-by-president-joe-biden-on-the-evacuation-mission-in-kabul/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [238, 261]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5379,
   'favorite_count': 30570,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5379,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Aug 27 13:42:44 +0000 2021',
  'id': 1431250830980788224,
  'id_str': '1431250830980788224',
  'full_text': 'RT @POTUS: The American service members who gave their lives were heroes. Heroes who have been engaged in a dangerous, selfless mission to…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Aug 26 23:21:28 +0000 2021',
   'id': 1431034088790581249,
   'id_str': '1431034088790581249',
   'full_text': 'The American service members who gave their lives were heroes. Heroes who have been engaged in a dangerous, selfless mission to save the lives of others. We have a continuing obligation — a sacred obligation — to their families that will last forever.',
   'truncated': False,
   'display_text_range': [0, 251],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11910,
   'favorite_count': 91686,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11910,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Aug 25 20:30:02 +0000 2021',
  'id': 1430628555742920704,
  'id_str': '1430628555742920704',
  'full_text': "We're going to do everything that we can to provide safe evacuation for Americans, our Afghan allies, partners, and Afghans who might be targeted because of their association with the United States.",
  'truncated': False,
  'display_text_range': [0, 198],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4120,
  'favorite_count': 40423,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Aug 25 13:21:43 +0000 2021',
  'id': 1430520767385677829,
  'id_str': '1430520767385677829',
  'full_text': 'Thank you to @SpeakerPelosi and every Democrat who came together to advance our Build Back Better Agenda in the House. The House’s historic vote is a huge step forward in our work to restore America’s economy, rebuild our infrastructure, and invest in our shared future.',
  'truncated': False,
  'display_text_range': [0, 270],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'SpeakerPelosi',
     'name': 'Nancy Pelosi',
     'id': 15764644,
     'id_str': '15764644',
     'indices': [13, 27]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4558,
  'favorite_count': 37345,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Aug 24 20:53:55 +0000 2021',
  'id': 1430272177744629762,
  'id_str': '1430272177744629762',
  'full_text': 'To the millions of Americans who have been waiting for full FDA approval—go get your COVID-19 shot now. https://t.co/393WzbJ6om',
  'truncated': False,
  'display_text_range': [0, 127],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1429921826025660421,
     'id_str': '1429921826025660421',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/E9ga6TGXEAM91nV.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9ga6TGXEAM91nV.jpg',
     'url': 'https://t.co/393WzbJ6om',
     'display_url': 'pic.twitter.com/393WzbJ6om',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1429922727184543745/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1429922727184543745,
     'source_status_id_str': '1429922727184543745',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1429921826025660421,
     'id_str': '1429921826025660421',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/E9ga6TGXEAM91nV.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9ga6TGXEAM91nV.jpg',
     'url': 'https://t.co/393WzbJ6om',
     'display_url': 'pic.twitter.com/393WzbJ6om',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1429922727184543745/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1429922727184543745,
     'source_status_id_str': '1429922727184543745',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 19483,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1429921826025660421/vid/320x320/rGam7C-hHc4z_AeF.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1429921826025660421/vid/540x540/nCcs2cEJpnOxWw9n.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1429921826025660421/pl/l1kmLp84E9RCw8UI.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1429921826025660421/vid/720x720/GDp3Z2ZMKZ9-6oHJ.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2105,
  'favorite_count': 15248,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Aug 24 13:37:34 +0000 2021',
  'id': 1430162366939942924,
  'id_str': '1430162366939942924',
  'full_text': 'The United States stands by the commitment we’ve made to evacuate people—and this includes vulnerable Afghans, such as women leaders and journalists. https://t.co/kfjfyKmBcM',
  'truncated': False,
  'display_text_range': [0, 149],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1428847061848444928,
     'id_str': '1428847061848444928',
     'indices': [150, 173],
     'media_url': 'http://pbs.twimg.com/media/E9RI3mmX0Agj5a3.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9RI3mmX0Agj5a3.jpg',
     'url': 'https://t.co/kfjfyKmBcM',
     'display_url': 'pic.twitter.com/kfjfyKmBcM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1430162366939942924/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1428847061848444928,
     'id_str': '1428847061848444928',
     'indices': [150, 173],
     'media_url': 'http://pbs.twimg.com/media/E9RI3mmX0Agj5a3.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9RI3mmX0Agj5a3.jpg',
     'url': 'https://t.co/kfjfyKmBcM',
     'display_url': 'pic.twitter.com/kfjfyKmBcM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1430162366939942924/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 24424,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1428847061848444928/vid/320x320/_anJLl6wkHU9We7s.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1428847061848444928/vid/720x720/YjSJMM5xFp5HwxEE.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1428847061848444928/vid/540x540/Y4E9swD8oc-LaFSC.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1428847061848444928/pl/YpmH10Yyqe5PS7WX.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1720,
  'favorite_count': 13194,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Aug 23 16:39:38 +0000 2021',
  'id': 1429845800612413441,
  'id_str': '1429845800612413441',
  'full_text': "Once screened and cleared, we will welcome Afghans who helped us in the war effort to their new home in the United States of America. \n\nBecause that's who we are. That's what America is.",
  'truncated': False,
  'display_text_range': [0, 186],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 8436,
  'favorite_count': 91353,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Aug 23 01:08:00 +0000 2021',
  'id': 1429611346346250242,
  'id_str': '1429611346346250242',
  'full_text': "To those in Henri’s path: Don't forget that you may need to seek shelter while we’re still battling COVID-19 and the Delta variant. So wear a mask and try to observe social distancing.\n\nAnd to everyone across the country, don't get caught by the next storm. Get vaccinated now.",
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4065,
  'favorite_count': 37179,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Aug 22 18:03:19 +0000 2021',
  'id': 1429504471395078144,
  'id_str': '1429504471395078144',
  'full_text': 'RT @POTUS: Today at 4 PM ET I will address the nation on my Administration’s response to Tropical Storm Henri, and give an update on the ev…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Aug 22 18:02:29 +0000 2021',
   'id': 1429504260224471040,
   'id_str': '1429504260224471040',
   'full_text': 'Today at 4 PM ET I will address the nation on my Administration’s response to Tropical Storm Henri, and give an update on the evacuation of American citizens, SIV applicants and their families, and vulnerable Afghans.',
   'truncated': False,
   'display_text_range': [0, 217],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4286,
   'favorite_count': 34409,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4286,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Aug 18 23:02:37 +0000 2021',
  'id': 1428130239016747016,
  'id_str': '1428130239016747016',
  'full_text': 'RT @POTUS: We will not sit by as Governors try to block or intimidate educators protecting kids against COVID-19.\n \nThis isn’t about politi…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Aug 18 22:03:14 +0000 2021',
   'id': 1428115295756066824,
   'id_str': '1428115295756066824',
   'full_text': 'We will not sit by as Governors try to block or intimidate educators protecting kids against COVID-19.\n \nThis isn’t about politics. This is about keeping our kids safe and taking on this virus together.',
   'truncated': False,
   'display_text_range': [0, 202],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 16791,
   'favorite_count': 116289,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 16791,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Aug 18 18:15:47 +0000 2021',
  'id': 1428058056672247813,
  'id_str': '1428058056672247813',
  'full_text': 'Human rights must be the center of our foreign policy, not the periphery. But the way to do it is not through endless military deployments. https://t.co/w2jMtgzisE',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1427767700303011842,
     'id_str': '1427767700303011842',
     'indices': [140, 163],
     'media_url': 'http://pbs.twimg.com/media/E9FuiGXVgAUjSbq.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9FuiGXVgAUjSbq.jpg',
     'url': 'https://t.co/w2jMtgzisE',
     'display_url': 'pic.twitter.com/w2jMtgzisE',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1428058056672247813/video/1',
     'type': 'photo',
     'sizes': {'small': {'w': 320, 'h': 320, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 320, 'h': 320, 'resize': 'fit'},
      'large': {'w': 320, 'h': 320, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1427767700303011842,
     'id_str': '1427767700303011842',
     'indices': [140, 163],
     'media_url': 'http://pbs.twimg.com/media/E9FuiGXVgAUjSbq.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9FuiGXVgAUjSbq.jpg',
     'url': 'https://t.co/w2jMtgzisE',
     'display_url': 'pic.twitter.com/w2jMtgzisE',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1428058056672247813/video/1',
     'type': 'video',
     'sizes': {'small': {'w': 320, 'h': 320, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 320, 'h': 320, 'resize': 'fit'},
      'large': {'w': 320, 'h': 320, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 42576,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427767700303011842/vid/540x540/0SnryaZuxRggxitO.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1427767700303011842/pl/OellRAYoBTXlmLYj.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427767700303011842/vid/720x720/e-5Fh-KXEXWz8_FH.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427767700303011842/vid/320x320/JmLfR31pc19vL2aC.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2151,
  'favorite_count': 18392,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Aug 18 16:08:46 +0000 2021',
  'id': 1428026091386679301,
  'id_str': '1428026091386679301',
  'full_text': 'RT @WhiteHouse: The COVID-19 vaccines are safe, free, and highly effective – but even highly effective vaccines experience a reduction in p…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Aug 18 15:16:53 +0000 2021',
   'id': 1428013035524919314,
   'id_str': '1428013035524919314',
   'full_text': 'The COVID-19 vaccines are safe, free, and highly effective – but even highly effective vaccines experience a reduction in protection over time. Today the CDC is announcing new planning for booster shots to protect people and families and stay ahead of the curve on COVID-19. https://t.co/8y7SU5MpHz',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1428013031385075719,
      'id_str': '1428013031385075719',
      'indices': [275, 298],
      'media_url': 'http://pbs.twimg.com/media/E9FSST5WEAccMJI.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E9FSST5WEAccMJI.jpg',
      'url': 'https://t.co/8y7SU5MpHz',
      'display_url': 'pic.twitter.com/8y7SU5MpHz',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1428013035524919314/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1428013031385075719,
      'id_str': '1428013031385075719',
      'indices': [275, 298],
      'media_url': 'http://pbs.twimg.com/media/E9FSST5WEAccMJI.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E9FSST5WEAccMJI.jpg',
      'url': 'https://t.co/8y7SU5MpHz',
      'display_url': 'pic.twitter.com/8y7SU5MpHz',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1428013035524919314/photo/1',
      'type': 'photo',
      'sizes': {'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3437,
   'favorite_count': 13687,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3437,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Aug 17 19:22:37 +0000 2021',
  'id': 1427712487072227337,
  'id_str': '1427712487072227337',
  'full_text': 'The answer is clear: We cannot continue to repeat the mistakes of the past. https://t.co/AA9Fc6ZFXi',
  'truncated': False,
  'display_text_range': [0, 75],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1427709820434583558,
     'id_str': '1427709820434583558',
     'indices': [76, 99],
     'media_url': 'http://pbs.twimg.com/media/E9A-367VEAAp3-h.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9A-367VEAAp3-h.jpg',
     'url': 'https://t.co/AA9Fc6ZFXi',
     'display_url': 'pic.twitter.com/AA9Fc6ZFXi',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1427712487072227337/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1427709820434583558,
     'id_str': '1427709820434583558',
     'indices': [76, 99],
     'media_url': 'http://pbs.twimg.com/media/E9A-367VEAAp3-h.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9A-367VEAAp3-h.jpg',
     'url': 'https://t.co/AA9Fc6ZFXi',
     'display_url': 'pic.twitter.com/AA9Fc6ZFXi',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1427712487072227337/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 50684,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427709820434583558/vid/320x320/T5EySIRJ4ht1piys.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427709820434583558/vid/720x720/Wh_TUFRLJqKgLy7X.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427709820434583558/vid/540x540/pFlI05ERL2AOf2SN.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1427709820434583558/pl/UjxdFRqDf9A63pAh.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3086,
  'favorite_count': 27563,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Aug 17 17:03:01 +0000 2021',
  'id': 1427677357297516552,
  'id_str': '1427677357297516552',
  'full_text': 'Four presidents have presided over an American troop presence in Afghanistan—two Republicans and two Democrats. We will not pass this war onto a fifth. https://t.co/d5kIcw27h8',
  'truncated': False,
  'display_text_range': [0, 151],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1427677271968686093,
     'id_str': '1427677271968686093',
     'indices': [152, 175],
     'media_url': 'http://pbs.twimg.com/media/E9AhRJdVUAQIj1C.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9AhRJdVUAQIj1C.jpg',
     'url': 'https://t.co/d5kIcw27h8',
     'display_url': 'pic.twitter.com/d5kIcw27h8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1427677357297516552/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1427677271968686093,
     'id_str': '1427677271968686093',
     'indices': [152, 175],
     'media_url': 'http://pbs.twimg.com/media/E9AhRJdVUAQIj1C.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E9AhRJdVUAQIj1C.jpg',
     'url': 'https://t.co/d5kIcw27h8',
     'display_url': 'pic.twitter.com/d5kIcw27h8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1427677357297516552/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 53120,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427677271968686093/vid/720x720/fOFcuOSN7WyteAAU.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427677271968686093/vid/320x320/AZLyKwZa7S_FBc2Q.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1427677271968686093/vid/540x540/0Ssosx5jM0DSGyx6.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1427677271968686093/pl/jTcbqcvJUAPfgkgX.m3u8?tag=14'}]},
     'additional_media_info': {'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3031,
  'favorite_count': 24491,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Aug 16 23:25:31 +0000 2021',
  'id': 1427411226372493315,
  'id_str': '1427411226372493315',
  'full_text': 'RT @POTUS: We went to Afghanistan almost 20 years ago with clear goals: get those who attacked us on September 11, 2001—and make sure al Qa…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Aug 16 20:21:30 +0000 2021',
   'id': 1427364918911766533,
   'id_str': '1427364918911766533',
   'full_text': 'We went to Afghanistan almost 20 years ago with clear goals: get those who attacked us on September 11, 2001—and make sure al Qaeda could not use Afghanistan as a base from which to attack us again.\n\nWe did that—a decade ago.\n\nOur mission was never supposed to be nation building.',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 13677,
   'favorite_count': 92253,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 13677,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Aug 16 15:09:25 +0000 2021',
  'id': 1427286379923492864,
  'id_str': '1427286379923492864',
  'full_text': 'RT @POTUS: I will be addressing the nation on Afghanistan at 3:45 PM ET today.',
  'truncated': False,
  'display_text_range': [0, 78],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Aug 16 15:06:25 +0000 2021',
   'id': 1427285626429353987,
   'id_str': '1427285626429353987',
   'full_text': 'I will be addressing the nation on Afghanistan at 3:45 PM ET today.',
   'truncated': False,
   'display_text_range': [0, 67],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 16425,
   'favorite_count': 122007,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 16425,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Aug 14 22:46:00 +0000 2021',
  'id': 1426676508349943815,
  'id_str': '1426676508349943815',
  'full_text': 'Our economy is coming back—but there’s more work to be done. We have to beat this virus. Get vaccinated.',
  'truncated': False,
  'display_text_range': [0, 104],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 8499,
  'favorite_count': 89316,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Aug 14 22:23:03 +0000 2021',
  'id': 1426670730595471360,
  'id_str': '1426670730595471360',
  'full_text': 'RT @POTUS: In what is already a challenging time for the people of Haiti, I am saddened by the devastating earthquake that occurred in Sain…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Aug 14 22:15:00 +0000 2021',
   'id': 1426668707019956229,
   'id_str': '1426668707019956229',
   'full_text': 'In what is already a challenging time for the people of Haiti, I am saddened by the devastating earthquake that occurred in Saint-Louis du Sud, Haiti this morning. Through USAID, we are supporting efforts to assess the damage and assist efforts to recover and rebuild.',
   'truncated': False,
   'display_text_range': [0, 268],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3671,
   'favorite_count': 28892,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3671,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Aug 14 16:59:16 +0000 2021',
  'id': 1426589251504902145,
  'id_str': '1426589251504902145',
  'full_text': 'While we will have ups and downs along the way, it’s clear: our economic plan is working, it produces results, and it’s moving our country forward. https://t.co/uAIcTZowyH',
  'truncated': False,
  'display_text_range': [0, 147],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1426589187306889221,
     'id_str': '1426589187306889221',
     'indices': [148, 171],
     'media_url': 'http://pbs.twimg.com/media/E8xDXELXoAUJQVZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E8xDXELXoAUJQVZ.jpg',
     'url': 'https://t.co/uAIcTZowyH',
     'display_url': 'pic.twitter.com/uAIcTZowyH',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1426589251504902145/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1920, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1426589187306889221,
     'id_str': '1426589187306889221',
     'indices': [148, 171],
     'media_url': 'http://pbs.twimg.com/media/E8xDXELXoAUJQVZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E8xDXELXoAUJQVZ.jpg',
     'url': 'https://t.co/uAIcTZowyH',
     'display_url': 'pic.twitter.com/uAIcTZowyH',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1426589251504902145/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1920, 'h': 1920, 'resize': 'fit'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 1200, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 8017,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1426589187306889221/vid/320x320/nHlkyWd0YkejCe0R.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1426589187306889221/pl/hGby2d5-bNCxve4B.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1426589187306889221/vid/720x720/pxfLNjpAWvnVzMXO.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1426589187306889221/vid/540x540/Seek1iDg4k5HohJo.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Job growth', 'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1655,
  'favorite_count': 11504,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Aug 13 13:58:00 +0000 2021',
  'id': 1426181243482251272,
  'id_str': '1426181243482251272',
  'full_text': 'Today, about 40 million families will receive their second monthly payment as part of the expanded Child Tax Credit.\n\nThis money is a game changer─and for some, it’s a lifesaver. https://t.co/v7BJtVo8eJ',
  'truncated': False,
  'display_text_range': [0, 178],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1425839722929299460,
     'id_str': '1425839722929299460',
     'indices': [179, 202],
     'media_url': 'http://pbs.twimg.com/media/E8mawsLXoAIRBJu.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E8mawsLXoAIRBJu.jpg',
     'url': 'https://t.co/v7BJtVo8eJ',
     'display_url': 'pic.twitter.com/v7BJtVo8eJ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1426181243482251272/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1425839722929299460,
     'id_str': '1425839722929299460',
     'indices': [179, 202],
     'media_url': 'http://pbs.twimg.com/media/E8mawsLXoAIRBJu.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E8mawsLXoAIRBJu.jpg',
     'url': 'https://t.co/v7BJtVo8eJ',
     'display_url': 'pic.twitter.com/v7BJtVo8eJ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1426181243482251272/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 37838,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1425839722929299460/vid/540x540/KJcmL7QZP9qwCqaJ.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1425839722929299460/pl/LI5dLECuAXXM2krP.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1425839722929299460/vid/320x320/Mn_UzvZilc85cRoC.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1425839722929299460/vid/720x720/cpiLvBEdBGLIVdOf.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.whitehouse.gov/child-tax-credit/'}},
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2996,
  'favorite_count': 20052,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Aug 13 00:56:28 +0000 2021',
  'id': 1425984566012092422,
  'id_str': '1425984566012092422',
  'full_text': "Gov. @GavinNewsom is leading California through unprecedented crises—he's a key partner in fighting the pandemic and helping build our economy back better. To keep him on the job, registered voters should vote no on the recall election by 9/14 and keep California moving forward.",
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'GavinNewsom',
     'name': 'Gavin Newsom',
     'id': 11347122,
     'id_str': '11347122',
     'indices': [5, 17]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 15792,
  'favorite_count': 76583,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Aug 12 00:27:00 +0000 2021',
  'id': 1425614760515555329,
  'id_str': '1425614760515555329',
  'full_text': 'There are no Republican bridges or Democratic roads. The Bipartisan Infrastructure Deal is a win for all Americans. https://t.co/fcvJV3zwd8',
  'truncated': False,
  'display_text_range': [0, 115],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1425222515857805317,
     'id_str': '1425222515857805317',
     'indices': [116, 139],
     'media_url': 'http://pbs.twimg.com/media/E8doXMZWQAI5F1E.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E8doXMZWQAI5F1E.jpg',
     'url': 'https://t.co/fcvJV3zwd8',
     'display_url': 'pic.twitter.com/fcvJV3zwd8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1425614760515555329/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1425222515857805317,
     'id_str': '1425222515857805317',
     'indices': [116, 139],
     'media_url': 'http://pbs.twimg.com/media/E8doXMZWQAI5F1E.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E8doXMZWQAI5F1E.jpg',
     'url': 'https://t.co/fcvJV3zwd8',
     'display_url': 'pic.twitter.com/fcvJV3zwd8',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1425614760515555329/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 24900,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1425222515857805317/vid/540x540/o1QhFSZ1UlKEM7_s.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1425222515857805317/vid/720x720/h2HhVelNGVIkmXqk.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1425222515857805317/pl/3At8r-oI6A3CNnOg.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1425222515857805317/vid/320x320/nVZqXjOtQIHWxNRc.mp4?tag=14'}]},
     'additional_media_info': {'title': 'President Biden on the Bipartisan Infrastructure Deal',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1697,
  'favorite_count': 13736,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Aug 11 23:00:22 +0000 2021',
  'id': 1425592958435446785,
  'id_str': '1425592958435446785',
  'full_text': 'What a year it’s been. With @KamalaHarris, we are building our country back better than ever before. https://t.co/FXQeOcbBqg',
  'truncated': False,
  'display_text_range': [0, 100],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'KamalaHarris',
     'name': 'Kamala Harris',
     'id': 30354991,
     'id_str': '30354991',
     'indices': [28, 41]}],
   'urls': [{'url': 'https://t.co/FXQeOcbBqg',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1293280411150217219',
     'display_url': 'twitter.com/JoeBiden/statu…',
     'indices': [101, 124]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': True,
  'quoted_status_id': 1293280411150217219,
  'quoted_status_id_str': '1293280411150217219',
  'quoted_status_permalink': {'url': 'https://t.co/FXQeOcbBqg',
   'expanded': 'https://twitter.com/JoeBiden/status/1293280411150217219',
   'display': 'twitter.com/JoeBiden/statu…'},
  'quoted_status': {'created_at': 'Tue Aug 11 20:17:32 +0000 2020',
   'id': 1293280411150217219,
   'id_str': '1293280411150217219',
   'full_text': 'I have the great honor to announce that I’ve picked @KamalaHarris — a fearless fighter for the little guy, and one of the country’s finest public servants — as my running mate.',
   'truncated': False,
   'display_text_range': [0, 176],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'KamalaHarris',
      'name': 'Kamala Harris',
      'id': 30354991,
      'id_str': '30354991',
      'indices': [52, 65]}],
    'urls': []},
   'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 939091,
    'id_str': '939091',
    'name': 'Joe Biden',
    'screen_name': 'JoeBiden',
    'location': 'Washington, DC',
    'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
    'url': 'https://t.co/UClrPuJpyZ',
    'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
        'expanded_url': 'http://joebiden.com',
        'display_url': 'joebiden.com',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 34155528,
    'friends_count': 48,
    'listed_count': 39074,
    'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
    'favourites_count': 20,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 8196,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': '565959',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': True,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
    'profile_link_color': '233F94',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': 'EBEBFF',
    'profile_text_color': '323232',
    'profile_use_background_image': True,
    'has_extended_profile': False,
    'default_profile': False,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 155697,
   'favorite_count': 793935,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'retweet_count': 1877,
  'favorite_count': 18278,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Aug 11 18:32:39 +0000 2021',
  'id': 1425525587716755460,
  'id_str': '1425525587716755460',
  'full_text': "After years and years of “infrastructure week,” we're on the cusp of a historic, bipartisan infrastructure decade that will transform America.",
  'truncated': False,
  'display_text_range': [0, 142],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4335,
  'favorite_count': 43373,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Aug 10 16:28:54 +0000 2021',
  'id': 1425132056212869121,
  'id_str': '1425132056212869121',
  'full_text': 'RT @POTUS: Big news, folks: The Bipartisan Infrastructure Deal has officially passed the Senate. I hope Congress will send it to my desk as…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Aug 10 16:02:07 +0000 2021',
   'id': 1425125314150141966,
   'id_str': '1425125314150141966',
   'full_text': 'Big news, folks: The Bipartisan Infrastructure Deal has officially passed the Senate. I hope Congress will send it to my desk as soon as possible so we can continue our work of building back better.',
   'truncated': False,
   'display_text_range': [0, 198],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11124,
   'favorite_count': 104515,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11124,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Aug 09 16:33:21 +0000 2021',
  'id': 1424770786288603144,
  'id_str': '1424770786288603144',
  'full_text': 'RT @POTUS: We can’t wait to tackle the climate crisis.\n\nThe signs are unmistakable. The science is undeniable. And the cost of inaction kee…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Aug 09 15:48:55 +0000 2021',
   'id': 1424759606845313028,
   'id_str': '1424759606845313028',
   'full_text': 'We can’t wait to tackle the climate crisis.\n\nThe signs are unmistakable. The science is undeniable. And the cost of inaction keeps mounting.',
   'truncated': False,
   'display_text_range': [0, 140],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 13349,
   'favorite_count': 101915,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 13349,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Aug 07 15:30:25 +0000 2021',
  'id': 1424030175940026370,
  'id_str': '1424030175940026370',
  'full_text': 'RT @POTUS: The Delta variant is surging, but we have the power to stop it.\n\nGet vaccinated.',
  'truncated': False,
  'display_text_range': [0, 91],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Aug 07 14:36:00 +0000 2021',
   'id': 1424016481046700039,
   'id_str': '1424016481046700039',
   'full_text': 'The Delta variant is surging, but we have the power to stop it.\n\nGet vaccinated.',
   'truncated': False,
   'display_text_range': [0, 80],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 15396,
   'favorite_count': 117365,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 15396,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Aug 07 00:27:00 +0000 2021',
  'id': 1423802823192481797,
  'id_str': '1423802823192481797',
  'full_text': 'Big news: In total, our administration has created over 4 million new jobs. That’s more jobs created than any other president’s first six months in history.\n\nThe Biden plan is working. https://t.co/ebe6Yhgdre',
  'truncated': False,
  'display_text_range': [0, 208],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1423761220042174466,
     'id_str': '1423761220042174466',
     'indices': [185, 208],
     'media_url': 'http://pbs.twimg.com/media/E8I3T_NWYAYXNFz.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E8I3T_NWYAYXNFz.jpg',
     'url': 'https://t.co/ebe6Yhgdre',
     'display_url': 'pic.twitter.com/ebe6Yhgdre',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1423761253756018688/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1423761253756018688,
     'source_status_id_str': '1423761253756018688',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1423761220042174466,
     'id_str': '1423761220042174466',
     'indices': [185, 208],
     'media_url': 'http://pbs.twimg.com/media/E8I3T_NWYAYXNFz.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E8I3T_NWYAYXNFz.jpg',
     'url': 'https://t.co/ebe6Yhgdre',
     'display_url': 'pic.twitter.com/ebe6Yhgdre',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1423761253756018688/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1423761253756018688,
     'source_status_id_str': '1423761253756018688',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 9468,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1423761220042174466/vid/540x540/uHUwRynb50dzsRa_.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1423761220042174466/pl/e0QhF68AJ-2ARA6x.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1423761220042174466/vid/320x320/oxNlKQier-XHQOWv.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1423761220042174466/vid/720x720/dL0-vvnFGYDDj-gT.mp4?tag=14'}]},
     'additional_media_info': {'title': 'More than 4 million new jobs',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2218,
  'favorite_count': 19791,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Aug 06 16:50:03 +0000 2021',
  'id': 1423687828639203331,
  'id_str': '1423687828639203331',
  'full_text': 'On January 6, a mob of extremists launched a violent and deadly assault on the Capitol.\n\nThe truth prevailed because brave law enforcement officials put their lives on the line to defend democracy. On behalf of a grateful nation, we thank you. https://t.co/oi184Tf6Bo',
  'truncated': False,
  'display_text_range': [0, 267],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1423642104375488515,
     'id_str': '1423642104375488515',
     'indices': [244, 267],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1423642104375488515/img/gVN_jIom4MZl30o_.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1423642104375488515/img/gVN_jIom4MZl30o_.jpg',
     'url': 'https://t.co/oi184Tf6Bo',
     'display_url': 'pic.twitter.com/oi184Tf6Bo',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1423642197627392000/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1423642197627392000,
     'source_status_id_str': '1423642197627392000',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1423642104375488515,
     'id_str': '1423642104375488515',
     'indices': [244, 267],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1423642104375488515/img/gVN_jIom4MZl30o_.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1423642104375488515/img/gVN_jIom4MZl30o_.jpg',
     'url': 'https://t.co/oi184Tf6Bo',
     'display_url': 'pic.twitter.com/oi184Tf6Bo',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1423642197627392000/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1423642197627392000,
     'source_status_id_str': '1423642197627392000',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 56607,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1423642104375488515/vid/720x720/zH1mcjaPHtiev0wQ.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1423642104375488515/pl/ZaNIWLu3C-kbpnCU.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1423642104375488515/vid/540x540/sMr4NO713qXimBva.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1423642104375488515/vid/320x320/BFdivG3xOKiG0eMW.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Biden signs bill awarding Congressional Gold Medals to Jan. 6 police officers',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2312,
  'favorite_count': 15694,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Aug 06 15:22:52 +0000 2021',
  'id': 1423665885630316554,
  'id_str': '1423665885630316554',
  'full_text': 'RT @POTUS: Tune in as I deliver remarks on the July jobs report.  https://t.co/NF399UDLE1',
  'truncated': False,
  'display_text_range': [0, 89],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/NF399UDLE1',
     'expanded_url': 'https://twitter.com/i/broadcasts/1ZkJzeXZBoDGv',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [66, 89]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Aug 06 15:22:30 +0000 2021',
   'id': 1423665794051985408,
   'id_str': '1423665794051985408',
   'full_text': 'Tune in as I deliver remarks on the July jobs report.  https://t.co/NF399UDLE1',
   'truncated': False,
   'display_text_range': [0, 78],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/NF399UDLE1',
      'expanded_url': 'https://twitter.com/i/broadcasts/1ZkJzeXZBoDGv',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [55, 78]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1224,
   'favorite_count': 8183,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1224,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Aug 06 15:12:32 +0000 2021',
  'id': 1423663285124087809,
  'id_str': '1423663285124087809',
  'full_text': 'RT @POTUS: More than 4 million jobs created since we took office.\n\nIt’s historic — and proof our economic plan is working.',
  'truncated': False,
  'display_text_range': [0, 122],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Aug 06 13:31:05 +0000 2021',
   'id': 1423637755310088200,
   'id_str': '1423637755310088200',
   'full_text': 'More than 4 million jobs created since we took office.\n\nIt’s historic — and proof our economic plan is working.',
   'truncated': False,
   'display_text_range': [0, 111],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5454,
   'favorite_count': 43234,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5454,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Aug 06 12:50:56 +0000 2021',
  'id': 1423627651634323463,
  'id_str': '1423627651634323463',
  'full_text': 'RT @POTUS: Fifty-six years ago today, our nation passed the Voting Rights Act and took a big step forward in our pursuit of a more perfect…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Aug 06 12:48:48 +0000 2021',
   'id': 1423627114281058311,
   'id_str': '1423627114281058311',
   'full_text': 'Fifty-six years ago today, our nation passed the Voting Rights Act and took a big step forward in our pursuit of a more perfect union. But half a century later, voting rights are under attack. We’ve got to pass federal legislation to protect the sacred right to vote.',
   'truncated': False,
   'display_text_range': [0, 267],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7606,
   'favorite_count': 44865,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7606,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Aug 05 18:31:11 +0000 2021',
  'id': 1423350890354905088,
  'id_str': '1423350890354905088',
  'full_text': 'We’ve made historic economic progress and created more jobs than any administration has done in the first six months of being in office.\n \nNow, we have a chance to turn this great movement into an economy that works for all Americans—not just the wealthy.',
  'truncated': False,
  'display_text_range': [0, 255],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1774,
  'favorite_count': 16762,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Aug 04 16:01:00 +0000 2021',
  'id': 1422950708723265540,
  'id_str': '1422950708723265540',
  'full_text': 'RT @POTUS: Happy birthday, @BarackObama. I’m proud to call you a brother and a friend — and I’m grateful for your selfless service to this…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'BarackObama',
     'name': 'Barack Obama',
     'id': 813286,
     'id_str': '813286',
     'indices': [27, 39]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Aug 04 15:55:58 +0000 2021',
   'id': 1422949440701308928,
   'id_str': '1422949440701308928',
   'full_text': 'Happy birthday, @BarackObama. I’m proud to call you a brother and a friend — and I’m grateful for your selfless service to this nation. https://t.co/jZ9XnX2Dxt',
   'truncated': False,
   'display_text_range': [0, 135],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'BarackObama',
      'name': 'Barack Obama',
      'id': 813286,
      'id_str': '813286',
      'indices': [16, 28]}],
    'urls': [],
    'media': [{'id': 1422949433193414662,
      'id_str': '1422949433193414662',
      'indices': [136, 159],
      'media_url': 'http://pbs.twimg.com/media/E79U-GrWQAYC1I8.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E79U-GrWQAYC1I8.jpg',
      'url': 'https://t.co/jZ9XnX2Dxt',
      'display_url': 'pic.twitter.com/jZ9XnX2Dxt',
      'expanded_url': 'https://twitter.com/POTUS/status/1422949440701308928/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1366, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1422949433193414662,
      'id_str': '1422949433193414662',
      'indices': [136, 159],
      'media_url': 'http://pbs.twimg.com/media/E79U-GrWQAYC1I8.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E79U-GrWQAYC1I8.jpg',
      'url': 'https://t.co/jZ9XnX2Dxt',
      'display_url': 'pic.twitter.com/jZ9XnX2Dxt',
      'expanded_url': 'https://twitter.com/POTUS/status/1422949440701308928/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1366, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 17022,
   'favorite_count': 215816,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 17022,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Aug 03 21:59:00 +0000 2021',
  'id': 1422678412200710148,
  'id_str': '1422678412200710148',
  'full_text': 'Workers shouldn’t just compete for jobs. Jobs should compete for workers. https://t.co/2o4a7Bjd9c',
  'truncated': False,
  'display_text_range': [0, 73],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1418021132578574341,
     'id_str': '1418021132578574341',
     'indices': [74, 97],
     'media_url': 'http://pbs.twimg.com/media/E63TC8jWYAkAVDW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E63TC8jWYAkAVDW.jpg',
     'url': 'https://t.co/2o4a7Bjd9c',
     'display_url': 'pic.twitter.com/2o4a7Bjd9c',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1422678412200710148/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1418021132578574341,
     'id_str': '1418021132578574341',
     'indices': [74, 97],
     'media_url': 'http://pbs.twimg.com/media/E63TC8jWYAkAVDW.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E63TC8jWYAkAVDW.jpg',
     'url': 'https://t.co/2o4a7Bjd9c',
     'display_url': 'pic.twitter.com/2o4a7Bjd9c',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1422678412200710148/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 12596,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418021132578574341/vid/320x320/irAlBvZtPYRvtTQK.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418021132578574341/vid/720x720/3gmkDgNJezlrYI8b.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418021132578574341/vid/540x540/7PfXlvbaM6P0HZGo.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1418021132578574341/pl/n8mWGfe04QNzt_FB.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1611,
  'favorite_count': 12899,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Aug 02 19:55:55 +0000 2021',
  'id': 1422285050427678726,
  'id_str': '1422285050427678726',
  'full_text': 'RT @POTUS: We are prepared to deal with the surge in COVID-19 cases like never before.  \n \nUnlike a year ago, we have the ability to save l…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Aug 02 13:35:28 +0000 2021',
   'id': 1422189305200533508,
   'id_str': '1422189305200533508',
   'full_text': 'We are prepared to deal with the surge in COVID-19 cases like never before.  \n \nUnlike a year ago, we have the ability to save lives and keep our economy growing. We know we can dramatically lower the cases in the country.\n \nWe can do this. Get vaccinated.',
   'truncated': False,
   'display_text_range': [0, 256],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6615,
   'favorite_count': 44943,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6615,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Aug 01 20:09:00 +0000 2021',
  'id': 1421925956055351298,
  'id_str': '1421925956055351298',
  'full_text': 'It’s past time the super wealthy and profitable corporations began paying their fair share. https://t.co/cHHSzIK9tU',
  'truncated': False,
  'display_text_range': [0, 115],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1418247974061281284,
     'id_str': '1418247974061281284',
     'indices': [92, 115],
     'media_url': 'http://pbs.twimg.com/media/E66hC0cWYAESWXM.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E66hC0cWYAESWXM.jpg',
     'url': 'https://t.co/cHHSzIK9tU',
     'display_url': 'pic.twitter.com/cHHSzIK9tU',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1418248007611559937/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1418248007611559937,
     'source_status_id_str': '1418248007611559937',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1418247974061281284,
     'id_str': '1418247974061281284',
     'indices': [92, 115],
     'media_url': 'http://pbs.twimg.com/media/E66hC0cWYAESWXM.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E66hC0cWYAESWXM.jpg',
     'url': 'https://t.co/cHHSzIK9tU',
     'display_url': 'pic.twitter.com/cHHSzIK9tU',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1418248007611559937/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1418248007611559937,
     'source_status_id_str': '1418248007611559937',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 8876,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418247974061281284/vid/540x540/B_5I8SGNALyx-MgT.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1418247974061281284/pl/kP0XpJv5FNNGBzEh.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418247974061281284/vid/720x720/c_wBsYOuTeU82T4m.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418247974061281284/vid/320x320/rItyQUhVnSE-GWwm.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2054,
  'favorite_count': 15804,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Aug 01 15:51:01 +0000 2021',
  'id': 1421861032402817032,
  'id_str': '1421861032402817032',
  'full_text': 'If you’re worried about the Delta variant, the answer is simple: get vaccinated. https://t.co/IYxM6RYWRd',
  'truncated': False,
  'display_text_range': [0, 104],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1418013211136307203,
     'id_str': '1418013211136307203',
     'indices': [81, 104],
     'media_url': 'http://pbs.twimg.com/media/E63LwLxWYBoqQkh.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E63LwLxWYBoqQkh.jpg',
     'url': 'https://t.co/IYxM6RYWRd',
     'display_url': 'pic.twitter.com/IYxM6RYWRd',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1418014179051511808/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1418014179051511808,
     'source_status_id_str': '1418014179051511808',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1418013211136307203,
     'id_str': '1418013211136307203',
     'indices': [81, 104],
     'media_url': 'http://pbs.twimg.com/media/E63LwLxWYBoqQkh.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E63LwLxWYBoqQkh.jpg',
     'url': 'https://t.co/IYxM6RYWRd',
     'display_url': 'pic.twitter.com/IYxM6RYWRd',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1418014179051511808/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1418014179051511808,
     'source_status_id_str': '1418014179051511808',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 5422,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1418013211136307203/pl/hqnm7CynMnieii5H.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418013211136307203/vid/540x540/Nv_1CexnknjtZjjm.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418013211136307203/vid/720x720/Hv7JEsLfXKjjJbps.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1418013211136307203/vid/320x320/ev3rQ_218Q7X06UC.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6322,
  'favorite_count': 43812,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jul 31 17:45:03 +0000 2021',
  'id': 1421527341126373378,
  'id_str': '1421527341126373378',
  'full_text': '.@TheDemocrats are making historic, early strategic investments that are needed to elect Democrats in 2021, 2022, and onward.\n\nYou can help us keep building back better and elect Democrats up and down the ballot by adding a grassroots donation today.\nhttps://t.co/vFRmWw6m5F',
  'truncated': False,
  'display_text_range': [0, 274],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TheDemocrats',
     'name': 'The Democrats',
     'id': 14377605,
     'id_str': '14377605',
     'indices': [1, 14]}],
   'urls': [{'url': 'https://t.co/vFRmWw6m5F',
     'expanded_url': 'https://secure.actblue.com/donate/social-july-eom?refcode=tw_20210731_jrb',
     'display_url': 'secure.actblue.com/donate/social-…',
     'indices': [251, 274]}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 853,
  'favorite_count': 5388,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jul 31 14:58:50 +0000 2021',
  'id': 1421485509596045314,
  'id_str': '1421485509596045314',
  'full_text': 'RT @POTUS: This week, we reached a historic Bipartisan Infrastructure Deal. Secretary Granholm, Secretary Raimondo, and Gina McCarthy hit t…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jul 31 14:08:52 +0000 2021',
   'id': 1421472935932567553,
   'id_str': '1421472935932567553',
   'full_text': 'This week, we reached a historic Bipartisan Infrastructure Deal. Secretary Granholm, Secretary Raimondo, and Gina McCarthy hit the road to discuss how our agenda will invest in electric vehicle infrastructure, support good-paying American jobs, and much more. https://t.co/niZHM5DbNt',
   'truncated': False,
   'display_text_range': [0, 259],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1421472761688559626,
      'id_str': '1421472761688559626',
      'indices': [260, 283],
      'media_url': 'http://pbs.twimg.com/media/E7oWGSbWUAArXLI.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E7oWGSbWUAArXLI.jpg',
      'url': 'https://t.co/niZHM5DbNt',
      'display_url': 'pic.twitter.com/niZHM5DbNt',
      'expanded_url': 'https://twitter.com/POTUS/status/1421472935932567553/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1421472761688559626,
      'id_str': '1421472761688559626',
      'indices': [260, 283],
      'media_url': 'http://pbs.twimg.com/media/E7oWGSbWUAArXLI.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E7oWGSbWUAArXLI.jpg',
      'url': 'https://t.co/niZHM5DbNt',
      'display_url': 'pic.twitter.com/niZHM5DbNt',
      'expanded_url': 'https://twitter.com/POTUS/status/1421472935932567553/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 304213,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1421472761688559626/vid/640x360/i4isklh_-UBu9mdG.mp4?tag=14'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1421472761688559626/vid/480x270/E4OlTVbIt8rzLyhU.mp4?tag=14'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1421472761688559626/vid/1280x720/7zsGXV0S4rNplUeR.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1421472761688559626/pl/SpUSQSeXi3ZV71mC.m3u8?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1455,
   'favorite_count': 8923,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1455,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jul 29 17:41:04 +0000 2021',
  'id': 1420801561480073218,
  'id_str': '1420801561480073218',
  'full_text': 'RT @POTUS: The Bipartisan Infrastructure Deal signals to the world that our democracy can function, deliver, and do big things. As we did w…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jul 29 14:52:22 +0000 2021',
   'id': 1420759107837960194,
   'id_str': '1420759107837960194',
   'full_text': 'The Bipartisan Infrastructure Deal signals to the world that our democracy can function, deliver, and do big things. As we did with the transcontinental railroad and the interstate highway, we will once again transform America and propel us into the future.',
   'truncated': False,
   'display_text_range': [0, 257],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2304,
   'favorite_count': 15179,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2304,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jul 27 21:37:32 +0000 2021',
  'id': 1420136297574944771,
  'id_str': '1420136297574944771',
  'full_text': 'RT @POTUS: Today’s announcement makes clear that the most important protection we have against the Delta variant is the vaccine. Although m…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jul 27 21:33:35 +0000 2021',
   'id': 1420135300580392965,
   'id_str': '1420135300580392965',
   'full_text': 'Today’s announcement makes clear that the most important protection we have against the Delta variant is the vaccine. Although most U.S. adults are vaccinated, too many are not and that has to change.\n \nGet protected: https://t.co/4MYpWqXVVo https://t.co/ReuDn5ulGI',
   'truncated': False,
   'display_text_range': [0, 241],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/4MYpWqXVVo',
      'expanded_url': 'http://vaccines.gov',
      'display_url': 'vaccines.gov',
      'indices': [218, 241]},
     {'url': 'https://t.co/ReuDn5ulGI',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1420134437199691777',
      'display_url': 'twitter.com/WhiteHouse/sta…',
      'indices': [242, 265]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': True,
   'quoted_status_id': 1420134437199691777,
   'quoted_status_id_str': '1420134437199691777',
   'quoted_status_permalink': {'url': 'https://t.co/ReuDn5ulGI',
    'expanded': 'https://twitter.com/WhiteHouse/status/1420134437199691777',
    'display': 'twitter.com/WhiteHouse/sta…'},
   'quoted_status': {'created_at': 'Tue Jul 27 21:30:09 +0000 2021',
    'id': 1420134437199691777,
    'id_str': '1420134437199691777',
    'full_text': 'The CDC has issued new mask guidance for individuals in substantial or high-transmission areas and K-12 schools. https://t.co/2lqRxYSIGg',
    'truncated': False,
    'display_text_range': [0, 112],
    'entities': {'hashtags': [],
     'symbols': [],
     'user_mentions': [],
     'urls': [],
     'media': [{'id': 1420134432074240002,
       'id_str': '1420134432074240002',
       'indices': [113, 136],
       'media_url': 'http://pbs.twimg.com/media/E7VUveUWEAIavBz.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/E7VUveUWEAIavBz.jpg',
       'url': 'https://t.co/2lqRxYSIGg',
       'display_url': 'pic.twitter.com/2lqRxYSIGg',
       'expanded_url': 'https://twitter.com/WhiteHouse/status/1420134437199691777/photo/1',
       'type': 'photo',
       'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
        'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
        'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
        'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
    'extended_entities': {'media': [{'id': 1420134432074240002,
       'id_str': '1420134432074240002',
       'indices': [113, 136],
       'media_url': 'http://pbs.twimg.com/media/E7VUveUWEAIavBz.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/E7VUveUWEAIavBz.jpg',
       'url': 'https://t.co/2lqRxYSIGg',
       'display_url': 'pic.twitter.com/2lqRxYSIGg',
       'expanded_url': 'https://twitter.com/WhiteHouse/status/1420134437199691777/photo/1',
       'type': 'photo',
       'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
        'medium': {'w': 1200, 'h': 676, 'resize': 'fit'},
        'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
        'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
    'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'in_reply_to_screen_name': None,
    'user': {'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'name': 'The White House',
     'screen_name': 'WhiteHouse',
     'location': 'United States of America',
     'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
     'url': 'https://t.co/121St65y97',
     'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
         'expanded_url': 'http://WhiteHouse.gov',
         'display_url': 'WhiteHouse.gov',
         'indices': [0, 23]}]},
      'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
         'expanded_url': 'http://whitehouse.gov/privacy',
         'display_url': 'whitehouse.gov/privacy',
         'indices': [65, 88]}]}},
     'protected': False,
     'followers_count': 7028902,
     'friends_count': 5,
     'listed_count': 10675,
     'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
     'favourites_count': 0,
     'utc_offset': None,
     'time_zone': None,
     'geo_enabled': False,
     'verified': True,
     'statuses_count': 3512,
     'lang': None,
     'contributors_enabled': False,
     'is_translator': False,
     'is_translation_enabled': False,
     'profile_background_color': 'F5F8FA',
     'profile_background_image_url': None,
     'profile_background_image_url_https': None,
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'has_extended_profile': True,
     'default_profile': True,
     'default_profile_image': False,
     'following': False,
     'follow_request_sent': False,
     'notifications': False,
     'translator_type': 'none',
     'withheld_in_countries': []},
    'geo': None,
    'coordinates': None,
    'place': None,
    'contributors': None,
    'is_quote_status': False,
    'retweet_count': 2673,
    'favorite_count': 9002,
    'favorited': False,
    'retweeted': False,
    'possibly_sensitive': False,
    'lang': 'en'},
   'retweet_count': 3132,
   'favorite_count': 14896,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': True,
  'quoted_status_id': 1420134437199691777,
  'quoted_status_id_str': '1420134437199691777',
  'quoted_status_permalink': {'url': 'https://t.co/ReuDn5ulGI',
   'expanded': 'https://twitter.com/WhiteHouse/status/1420134437199691777',
   'display': 'twitter.com/WhiteHouse/sta…'},
  'retweet_count': 3132,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jul 26 15:00:46 +0000 2021',
  'id': 1419674057369391111,
  'id_str': '1419674057369391111',
  'full_text': 'You’re not gonna find anyone who knows how to get more done for Virginia than @TerryMcAuliffe. https://t.co/wosvuiDdCJ',
  'truncated': False,
  'display_text_range': [0, 94],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [78, 93]}],
   'urls': [],
   'media': [{'id': 1419672268012236805,
     'id_str': '1419672268012236805',
     'indices': [95, 118],
     'media_url': 'http://pbs.twimg.com/media/E7Ox_KIXsAAHCMP.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E7Ox_KIXsAAHCMP.jpg',
     'url': 'https://t.co/wosvuiDdCJ',
     'display_url': 'pic.twitter.com/wosvuiDdCJ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1419674057369391111/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1419672268012236805,
     'id_str': '1419672268012236805',
     'indices': [95, 118],
     'media_url': 'http://pbs.twimg.com/media/E7Ox_KIXsAAHCMP.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E7Ox_KIXsAAHCMP.jpg',
     'url': 'https://t.co/wosvuiDdCJ',
     'display_url': 'pic.twitter.com/wosvuiDdCJ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1419674057369391111/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 58792,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1419672268012236805/vid/720x720/GiC_IIzDuL4iW6sd.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1419672268012236805/vid/320x320/OW9WbGXtZcpX8NmD.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1419672268012236805/pl/MT3W0xPCtBcDOVHo.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1419672268012236805/vid/540x540/x3SvkFk24tAxlWpb.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1131,
  'favorite_count': 7671,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Jul 26 14:14:57 +0000 2021',
  'id': 1419662529987584009,
  'id_str': '1419662529987584009',
  'full_text': 'RT @POTUS: Today marks the 31st anniversary of the Americans with Disabilities Act — a landmark bill I proudly cosponsored in the Senate. W…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Jul 26 14:10:08 +0000 2021',
   'id': 1419661317418409986,
   'id_str': '1419661317418409986',
   'full_text': 'Today marks the 31st anniversary of the Americans with Disabilities Act — a landmark bill I proudly cosponsored in the Senate. While we celebrate the incredible progress we’ve made toward meeting the full aspirations of the ADA, we must recommit to the work that remains.',
   'truncated': False,
   'display_text_range': [0, 271],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4801,
   'favorite_count': 35155,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4801,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jul 25 20:11:01 +0000 2021',
  'id': 1419389748750307332,
  'id_str': '1419389748750307332',
  'full_text': 'America is about possibilities. https://t.co/xZG43VXAcM',
  'truncated': False,
  'display_text_range': [0, 31],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1419389715359354882,
     'id_str': '1419389715359354882',
     'indices': [32, 55],
     'media_url': 'http://pbs.twimg.com/media/E7Kvc5JWUAc_8G4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E7Kvc5JWUAc_8G4.jpg',
     'url': 'https://t.co/xZG43VXAcM',
     'display_url': 'pic.twitter.com/xZG43VXAcM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1419389748750307332/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1419389715359354882,
     'id_str': '1419389715359354882',
     'indices': [32, 55],
     'media_url': 'http://pbs.twimg.com/media/E7Kvc5JWUAc_8G4.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E7Kvc5JWUAc_8G4.jpg',
     'url': 'https://t.co/xZG43VXAcM',
     'display_url': 'pic.twitter.com/xZG43VXAcM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1419389748750307332/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 10010,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1419389715359354882/vid/540x540/zFJDSJqvn5DaH9uc.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1419389715359354882/vid/320x320/ZOYJLurh1Y4ZwWwY.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1419389715359354882/pl/ZBej-AhPd3XZHtp6.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1419389715359354882/vid/720x720/sYT7AqJWP_v3XgFa.mp4?tag=14'}]},
     'additional_media_info': {'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2073,
  'favorite_count': 18965,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jul 24 18:19:14 +0000 2021',
  'id': 1418999226894372872,
  'id_str': '1418999226894372872',
  'full_text': 'RT @POTUS: Folks the Delta variant is no joke. Please protect yourself and your loved ones – get vaccinated.',
  'truncated': False,
  'display_text_range': [0, 108],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jul 24 16:00:00 +0000 2021',
   'id': 1418964190421786627,
   'id_str': '1418964190421786627',
   'full_text': 'Folks the Delta variant is no joke. Please protect yourself and your loved ones – get vaccinated.',
   'truncated': False,
   'display_text_range': [0, 97],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 24951,
   'favorite_count': 168721,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 24951,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jul 23 23:38:13 +0000 2021',
  'id': 1418717115834642433,
  'id_str': '1418717115834642433',
  'full_text': '.@TerryMcAuliffe is running for governor of Virginia to create good-paying jobs, make health care more affordable, and give every child a world-class education. Tune in for our grassroots event. https://t.co/fpVcjUf0Cq',
  'truncated': False,
  'display_text_range': [0, 218],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TerryMcAuliffe',
     'name': 'Terry McAuliffe',
     'id': 19471123,
     'id_str': '19471123',
     'indices': [1, 16]}],
   'urls': [{'url': 'https://t.co/fpVcjUf0Cq',
     'expanded_url': 'https://twitter.com/i/broadcasts/1MYGNmgbQOOKw',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [195, 218]}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1704,
  'favorite_count': 8800,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jul 22 18:59:56 +0000 2021',
  'id': 1418284694463033348,
  'id_str': '1418284694463033348',
  'full_text': "RT @POTUS: I condemn the mass detentions and sham trials that are the Cuban regime's efforts to threaten the Cuban people into silence. My…",
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jul 22 18:11:34 +0000 2021',
   'id': 1418272522219532295,
   'id_str': '1418272522219532295',
   'full_text': "I condemn the mass detentions and sham trials that are the Cuban regime's efforts to threaten the Cuban people into silence. My Administration stands with the Cuban people, and is imposing new sanctions targeting those in the Cuban regime responsible for this crackdown.",
   'truncated': False,
   'display_text_range': [0, 270],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5116,
   'favorite_count': 29856,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5116,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jul 20 17:41:03 +0000 2021',
  'id': 1417540067027992583,
  'id_str': '1417540067027992583',
  'full_text': 'Six months in, our economic plan is working. https://t.co/j5hTV93YwP',
  'truncated': False,
  'display_text_range': [0, 68],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1417231741857767426,
     'id_str': '1417231741857767426',
     'indices': [45, 68],
     'media_url': 'http://pbs.twimg.com/media/E6sFnUjWYAUzkao.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6sFnUjWYAUzkao.jpg',
     'url': 'https://t.co/j5hTV93YwP',
     'display_url': 'pic.twitter.com/j5hTV93YwP',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1417461788740833292/video/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 540, 'h': 540, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 540, 'h': 540, 'resize': 'fit'},
      'small': {'w': 540, 'h': 540, 'resize': 'fit'}},
     'source_status_id': 1417461788740833292,
     'source_status_id_str': '1417461788740833292',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1417231741857767426,
     'id_str': '1417231741857767426',
     'indices': [45, 68],
     'media_url': 'http://pbs.twimg.com/media/E6sFnUjWYAUzkao.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6sFnUjWYAUzkao.jpg',
     'url': 'https://t.co/j5hTV93YwP',
     'display_url': 'pic.twitter.com/j5hTV93YwP',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1417461788740833292/video/1',
     'type': 'video',
     'sizes': {'medium': {'w': 540, 'h': 540, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 540, 'h': 540, 'resize': 'fit'},
      'small': {'w': 540, 'h': 540, 'resize': 'fit'}},
     'source_status_id': 1417461788740833292,
     'source_status_id_str': '1417461788740833292',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 42543,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1417231741857767426/pl/5lEQlG64meZyJdH_.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1417231741857767426/vid/320x320/8uDMKRQB5JTdsSGc.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1417231741857767426/vid/540x540/FLunPL1HW0qt5bt-.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1417231741857767426/vid/720x720/OUdh_MQTNe0VHOww.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2646,
  'favorite_count': 23275,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Jul 19 22:07:44 +0000 2021',
  'id': 1417244793722314752,
  'id_str': '1417244793722314752',
  'full_text': "With the expanded Child Tax Credit, we're proving that democracy can deliver for the American people. https://t.co/CElYsejTiH",
  'truncated': False,
  'display_text_range': [0, 101],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1417243885798100992,
     'id_str': '1417243885798100992',
     'indices': [102, 125],
     'media_url': 'http://pbs.twimg.com/media/E6sQMLuXsAASAoc.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6sQMLuXsAASAoc.jpg',
     'url': 'https://t.co/CElYsejTiH',
     'display_url': 'pic.twitter.com/CElYsejTiH',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1417244793722314752/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1417243885798100992,
     'id_str': '1417243885798100992',
     'indices': [102, 125],
     'media_url': 'http://pbs.twimg.com/media/E6sQMLuXsAASAoc.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6sQMLuXsAASAoc.jpg',
     'url': 'https://t.co/CElYsejTiH',
     'display_url': 'pic.twitter.com/CElYsejTiH',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1417244793722314752/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 31865,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1417243885798100992/vid/540x540/5J1tBirWs_n9hIpP.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1417243885798100992/vid/720x720/lN1rD0PMLq6mCMAY.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1417243885798100992/vid/320x320/RvWl4XQEKPYGHOJN.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1417243885798100992/pl/RMdfuxkcwmYQOLWU.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.whitehouse.gov/child-tax-credit/'}},
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1250,
  'favorite_count': 10639,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Jul 19 16:43:53 +0000 2021',
  'id': 1417163292557119490,
  'id_str': '1417163292557119490',
  'full_text': 'RT @POTUS: Since I took office six months ago, we’ve gone from 60,000 new jobs per month – to 60,000 every three days.\n\nThat’s the fastest…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Jul 19 15:45:30 +0000 2021',
   'id': 1417148599293591555,
   'id_str': '1417148599293591555',
   'full_text': 'Since I took office six months ago, we’ve gone from 60,000 new jobs per month – to 60,000 every three days.\n\nThat’s the fastest job growth at this point in any Administration in history.',
   'truncated': False,
   'display_text_range': [0, 186],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7968,
   'favorite_count': 64014,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7968,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jul 18 18:54:11 +0000 2021',
  'id': 1416833698872401928,
  'id_str': '1416833698872401928',
  'full_text': 'Wildfires don’t stop at a county or state line. That’s why we’re working hand-in-hand with state and local leaders to invest in prevention and preparation to fight wildfires. https://t.co/IJYy4Qpi7T',
  'truncated': False,
  'display_text_range': [0, 174],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1416833653108318214,
     'id_str': '1416833653108318214',
     'indices': [175, 198],
     'media_url': 'http://pbs.twimg.com/media/E6mavMjXMAUxlSa.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6mavMjXMAUxlSa.jpg',
     'url': 'https://t.co/IJYy4Qpi7T',
     'display_url': 'pic.twitter.com/IJYy4Qpi7T',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1416833698872401928/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1416833653108318214,
     'id_str': '1416833653108318214',
     'indices': [175, 198],
     'media_url': 'http://pbs.twimg.com/media/E6mavMjXMAUxlSa.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6mavMjXMAUxlSa.jpg',
     'url': 'https://t.co/IJYy4Qpi7T',
     'display_url': 'pic.twitter.com/IJYy4Qpi7T',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1416833698872401928/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 17100,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416833653108318214/vid/540x540/UnPXg7jz57cpfY9F.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1416833653108318214/pl/gWuaeS8WwHuNLwwi.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416833653108318214/vid/720x720/FBi3d_gk47QnV_bf.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416833653108318214/vid/320x320/8QrxSc7_-_W4B_mh.mp4?tag=14'}]},
     'additional_media_info': {'title': 'Wildfires', 'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1576,
  'favorite_count': 12969,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Jul 18 16:08:51 +0000 2021',
  'id': 1416792088239394816,
  'id_str': '1416792088239394816',
  'full_text': 'RT @POTUS: With the Delta variant on the rise across the country, it’s more important than ever to get vaccinated. Head to https://t.co/4MY…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Jul 18 14:22:09 +0000 2021',
   'id': 1416765236623904770,
   'id_str': '1416765236623904770',
   'full_text': 'With the Delta variant on the rise across the country, it’s more important than ever to get vaccinated. Head to https://t.co/4MYpWqXVVo to find a clinic near you.',
   'truncated': False,
   'display_text_range': [0, 162],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/4MYpWqXVVo',
      'expanded_url': 'http://vaccines.gov',
      'display_url': 'vaccines.gov',
      'indices': [112, 135]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4299,
   'favorite_count': 21041,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4299,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jul 17 17:24:13 +0000 2021',
  'id': 1416448669688156171,
  'id_str': '1416448669688156171',
  'full_text': 'Our service members—at home and abroad—are the steel spine of America. https://t.co/djTxn46dxC',
  'truncated': False,
  'display_text_range': [0, 70],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1416448619805351936,
     'id_str': '1416448619805351936',
     'indices': [71, 94],
     'media_url': 'http://pbs.twimg.com/media/E6g8jjCXMAQv-dY.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6g8jjCXMAQv-dY.jpg',
     'url': 'https://t.co/djTxn46dxC',
     'display_url': 'pic.twitter.com/djTxn46dxC',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1416448669688156171/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1416448619805351936,
     'id_str': '1416448619805351936',
     'indices': [71, 94],
     'media_url': 'http://pbs.twimg.com/media/E6g8jjCXMAQv-dY.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6g8jjCXMAQv-dY.jpg',
     'url': 'https://t.co/djTxn46dxC',
     'display_url': 'pic.twitter.com/djTxn46dxC',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1416448669688156171/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 14648,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416448619805351936/vid/320x320/6oXNKRukZUBbCJsW.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416448619805351936/vid/540x540/Xc4nIwSC1fv9hc3o.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416448619805351936/vid/720x720/JGnLamt_IQMdkuwy.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1416448619805351936/pl/icEqkmzqbic3Fiia.m3u8?tag=14'}]},
     'additional_media_info': {'title': 'Thank you to our service members.',
      'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1302,
  'favorite_count': 10678,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jul 17 15:25:53 +0000 2021',
  'id': 1416418887453843457,
  'id_str': '1416418887453843457',
  'full_text': 'RT @POTUS: Yesterday’s Federal court ruling is deeply disappointing. While the court’s order does not now affect current DACA recipients, t…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jul 17 15:24:40 +0000 2021',
   'id': 1416418580653039625,
   'id_str': '1416418580653039625',
   'full_text': 'Yesterday’s Federal court ruling is deeply disappointing. While the court’s order does not now affect current DACA recipients, this decision nonetheless relegates hundreds of thousands of young immigrants to an uncertain future. It is my fervent hope that Congress will act.',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3868,
   'favorite_count': 24743,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3868,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jul 16 18:33:35 +0000 2021',
  'id': 1416103737748242433,
  'id_str': '1416103737748242433',
  'full_text': "After a year of hard-fought progress on COVID-19, we can't get complacent now. Let's finish the job together. https://t.co/vATTWcD3EM",
  'truncated': False,
  'display_text_range': [0, 109],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1416103092131713029,
     'id_str': '1416103092131713029',
     'indices': [110, 133],
     'media_url': 'http://pbs.twimg.com/media/E6cChq5XEAIL0K6.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6cChq5XEAIL0K6.jpg',
     'url': 'https://t.co/vATTWcD3EM',
     'display_url': 'pic.twitter.com/vATTWcD3EM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1416103737748242433/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1416103092131713029,
     'id_str': '1416103092131713029',
     'indices': [110, 133],
     'media_url': 'http://pbs.twimg.com/media/E6cChq5XEAIL0K6.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6cChq5XEAIL0K6.jpg',
     'url': 'https://t.co/vATTWcD3EM',
     'display_url': 'pic.twitter.com/vATTWcD3EM',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1416103737748242433/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 18785,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1416103092131713029/pl/U8kgFsuQSBvQO2Cy.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416103092131713029/vid/720x720/3IN2LEtVxFhYBgB1.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416103092131713029/vid/320x320/6SX8hSWHLz2rQghN.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1416103092131713029/vid/540x540/UC9HqLCiPHObgxIw.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1717,
  'favorite_count': 13204,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jul 15 14:47:48 +0000 2021',
  'id': 1415684527700148232,
  'id_str': '1415684527700148232',
  'full_text': 'RT @POTUS: Today is a historic day for our country. Because beginning this morning, nearly all working families started receiving their fir…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jul 15 13:50:05 +0000 2021',
   'id': 1415670003387428869,
   'id_str': '1415670003387428869',
   'full_text': 'Today is a historic day for our country. Because beginning this morning, nearly all working families started receiving their first tax cut payment from the Child Tax Credit of up to $300 per child.\n\nHelp is here with the American Rescue Plan.',
   'truncated': False,
   'display_text_range': [0, 242],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6346,
   'favorite_count': 47955,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6346,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jul 15 01:48:47 +0000 2021',
  'id': 1415488484693905411,
  'id_str': '1415488484693905411',
  'full_text': 'RT @POTUS: Thanks for stopping by, Olivia, and for using your voice to urge young people to get vaccinated. If we all do our part and get t…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jul 15 00:29:31 +0000 2021',
   'id': 1415468532909883392,
   'id_str': '1415468532909883392',
   'full_text': 'Thanks for stopping by, Olivia, and for using your voice to urge young people to get vaccinated. If we all do our part and get the COVID-19 vaccine, we can defeat this virus once and for all. Let’s do this. https://t.co/ovn12CUjLu',
   'truncated': False,
   'display_text_range': [0, 206],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1415468528187199490,
      'id_str': '1415468528187199490',
      'indices': [207, 230],
      'media_url': 'http://pbs.twimg.com/media/E6TBIH1X0AIv1Cf.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E6TBIH1X0AIv1Cf.jpg',
      'url': 'https://t.co/ovn12CUjLu',
      'display_url': 'pic.twitter.com/ovn12CUjLu',
      'expanded_url': 'https://twitter.com/POTUS/status/1415468532909883392/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1415468528187199490,
      'id_str': '1415468528187199490',
      'indices': [207, 230],
      'media_url': 'http://pbs.twimg.com/media/E6TBIH1X0AIv1Cf.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E6TBIH1X0AIv1Cf.jpg',
      'url': 'https://t.co/ovn12CUjLu',
      'display_url': 'pic.twitter.com/ovn12CUjLu',
      'expanded_url': 'https://twitter.com/POTUS/status/1415468532909883392/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 2048, 'h': 1365, 'resize': 'fit'},
       'small': {'w': 680, 'h': 453, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 14825,
   'favorite_count': 177910,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 14825,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jul 14 19:15:00 +0000 2021',
  'id': 1415389383100825602,
  'id_str': '1415389383100825602',
  'full_text': 'Let’s be clear: we’re going to vigorously challenge attacks on our elections. https://t.co/XZ7WiwXV1K',
  'truncated': False,
  'display_text_range': [0, 77],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1415080853546405890,
     'id_str': '1415080853546405890',
     'indices': [78, 101],
     'media_url': 'http://pbs.twimg.com/media/E6Ngm1SXsAA9a19.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6Ngm1SXsAA9a19.jpg',
     'url': 'https://t.co/XZ7WiwXV1K',
     'display_url': 'pic.twitter.com/XZ7WiwXV1K',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1415389383100825602/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1415080853546405890,
     'id_str': '1415080853546405890',
     'indices': [78, 101],
     'media_url': 'http://pbs.twimg.com/media/E6Ngm1SXsAA9a19.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6Ngm1SXsAA9a19.jpg',
     'url': 'https://t.co/XZ7WiwXV1K',
     'display_url': 'pic.twitter.com/XZ7WiwXV1K',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1415389383100825602/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 32115,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1415080853546405890/vid/540x540/-JDZDDbwfeleusbc.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1415080853546405890/vid/320x320/gi-caF7uoAYC4gyR.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1415080853546405890/vid/720x720/nM4ScnVWk85JFUf5.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1415080853546405890/pl/T5UlEI49vTpZe2Ql.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2111,
  'favorite_count': 16484,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jul 14 13:53:47 +0000 2021',
  'id': 1415308547588567045,
  'id_str': '1415308547588567045',
  'full_text': 'The “big lie” is just that—a big lie. https://t.co/vWz9LrUK5s',
  'truncated': False,
  'display_text_range': [0, 37],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1415304327548264450,
     'id_str': '1415304327548264450',
     'indices': [38, 61],
     'media_url': 'http://pbs.twimg.com/media/E6Qr0qIWUAMqi0t.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6Qr0qIWUAMqi0t.jpg',
     'url': 'https://t.co/vWz9LrUK5s',
     'display_url': 'pic.twitter.com/vWz9LrUK5s',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1415308547588567045/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1415304327548264450,
     'id_str': '1415304327548264450',
     'indices': [38, 61],
     'media_url': 'http://pbs.twimg.com/media/E6Qr0qIWUAMqi0t.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E6Qr0qIWUAMqi0t.jpg',
     'url': 'https://t.co/vWz9LrUK5s',
     'display_url': 'pic.twitter.com/vWz9LrUK5s',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1415308547588567045/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 12846,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1415304327548264450/vid/320x320/pYDO4T-NV2nYTfHB.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1415304327548264450/vid/540x540/IYflsO7GtZE9tjNu.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1415304327548264450/vid/720x720/AxOJ6z-GiaT_Rcsy.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1415304327548264450/pl/H7bKovv4QGDfSb0u.m3u8?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3392,
  'favorite_count': 22997,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Jul 11 19:02:43 +0000 2021',
  'id': 1414299130743111685,
  'id_str': '1414299130743111685',
  'full_text': 'RT @POTUS: Get vaccinated, folks. It’s free, it’s effective, and it’s never been easier or more important.',
  'truncated': False,
  'display_text_range': [0, 106],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Jul 11 14:47:55 +0000 2021',
   'id': 1414235008408162309,
   'id_str': '1414235008408162309',
   'full_text': 'Get vaccinated, folks. It’s free, it’s effective, and it’s never been easier or more important.',
   'truncated': False,
   'display_text_range': [0, 95],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 20555,
   'favorite_count': 157900,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 20555,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jul 09 19:45:37 +0000 2021',
  'id': 1413585151607574532,
  'id_str': '1413585151607574532',
  'full_text': 'RT @POTUS: Let me be clear: capitalism without competition isn’t capitalism. It’s exploitation.',
  'truncated': False,
  'display_text_range': [0, 95],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Jul 09 17:58:00 +0000 2021',
   'id': 1413558065748758529,
   'id_str': '1413558065748758529',
   'full_text': 'Let me be clear: capitalism without competition isn’t capitalism. It’s exploitation.',
   'truncated': False,
   'display_text_range': [0, 84],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 19439,
   'favorite_count': 135665,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 19439,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jul 09 15:13:05 +0000 2021',
  'id': 1413516563118964742,
  'id_str': '1413516563118964742',
  'full_text': 'On this day last year during the economic crisis, we announced we weren’t just going back to the way things were—we were going to build back better. \n\nOur work continues strengthening the middle class, ensuring everyone is dealt-in, and building a more climate-resilient nation.',
  'truncated': False,
  'display_text_range': [0, 278],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1682,
  'favorite_count': 16306,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jul 08 17:03:46 +0000 2021',
  'id': 1413182029898780674,
  'id_str': '1413182029898780674',
  'full_text': 'The sacred right to vote is under attack across the country. That’s why @TheDemocrats are launching a first-of-its-kind voter protection effort. Tune in.\nhttps://t.co/HwcGh0KhbF',
  'truncated': False,
  'display_text_range': [0, 177],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TheDemocrats',
     'name': 'The Democrats',
     'id': 14377605,
     'id_str': '14377605',
     'indices': [72, 85]}],
   'urls': [{'url': 'https://t.co/HwcGh0KhbF',
     'expanded_url': 'https://twitter.com/i/broadcasts/1kvKpoArQvOxE',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [154, 177]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1384,
  'favorite_count': 7679,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jul 07 22:03:46 +0000 2021',
  'id': 1412895142244229127,
  'id_str': '1412895142244229127',
  'full_text': 'RT @POTUS: The fact is 12 years of education is no longer enough to compete in the 21st Century.\n \nThat’s why my Build Back Better Agenda w…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Jul 07 18:56:13 +0000 2021',
   'id': 1412847943653150725,
   'id_str': '1412847943653150725',
   'full_text': 'The fact is 12 years of education is no longer enough to compete in the 21st Century.\n \nThat’s why my Build Back Better Agenda will guarantee four additional years of public education for every person in America – two years of pre-school and two years of free community college.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7226,
   'favorite_count': 60887,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7226,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jul 06 16:35:11 +0000 2021',
  'id': 1412450060927918087,
  'id_str': '1412450060927918087',
  'full_text': 'RT @POTUS: We’re closer than ever to declaring our independence from COVID-19, but the fight is not over yet. Powerful strains like the Del…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jul 06 16:15:56 +0000 2021',
   'id': 1412445216469041152,
   'id_str': '1412445216469041152',
   'full_text': 'We’re closer than ever to declaring our independence from COVID-19, but the fight is not over yet. Powerful strains like the Delta variant have emerged.\n\nThe best defense against these deadly variants is simple: get vaccinated.',
   'truncated': False,
   'display_text_range': [0, 227],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5786,
   'favorite_count': 45336,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5786,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jul 04 13:46:06 +0000 2021',
  'id': 1411682736859910153,
  'id_str': '1411682736859910153',
  'full_text': 'America is coming back—together. https://t.co/Alt087kMUO',
  'truncated': False,
  'display_text_range': [0, 32],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1410319824752975880,
     'id_str': '1410319824752975880',
     'indices': [33, 56],
     'media_url': 'http://pbs.twimg.com/media/E5J21VCXEAItoeh.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E5J21VCXEAItoeh.jpg',
     'url': 'https://t.co/Alt087kMUO',
     'display_url': 'pic.twitter.com/Alt087kMUO',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1411682736859910153/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1410319824752975880,
     'id_str': '1410319824752975880',
     'indices': [33, 56],
     'media_url': 'http://pbs.twimg.com/media/E5J21VCXEAItoeh.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E5J21VCXEAItoeh.jpg',
     'url': 'https://t.co/Alt087kMUO',
     'display_url': 'pic.twitter.com/Alt087kMUO',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1411682736859910153/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 15048,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1410319824752975880/vid/720x720/2oHpq8qLBTZZWalO.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1410319824752975880/pl/38ctBwlCw7iCCCoJ.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1410319824752975880/vid/320x320/5TY56WIF09j3erUH.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1410319824752975880/vid/540x540/ko-x0QgpCC5WLVlf.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3046,
  'favorite_count': 23396,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jul 03 15:05:01 +0000 2021',
  'id': 1411340208705097734,
  'id_str': '1411340208705097734',
  'full_text': 'Over 300 million shots administered.\nChecks delivered to more than 169 million Americans.\nMore than three million jobs added to the U.S. economy.\n\nWe’ve come a long way. But this is just the beginning.',
  'truncated': False,
  'display_text_range': [0, 201],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5531,
  'favorite_count': 51693,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jul 02 15:51:44 +0000 2021',
  'id': 1410989575732961286,
  'id_str': '1410989575732961286',
  'full_text': 'Help us mark our independence from this virus—get vaccinated.',
  'truncated': False,
  'display_text_range': [0, 61],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7549,
  'favorite_count': 75547,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jul 02 13:57:47 +0000 2021',
  'id': 1410960898190159879,
  'id_str': '1410960898190159879',
  'full_text': 'RT @POTUS: 3 million jobs since we took office. \n \nOur economic plan is working.',
  'truncated': False,
  'display_text_range': [0, 80],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Jul 02 13:54:19 +0000 2021',
   'id': 1410960025829453831,
   'id_str': '1410960025829453831',
   'full_text': '3 million jobs since we took office. \n \nOur economic plan is working.',
   'truncated': False,
   'display_text_range': [0, 69],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8160,
   'favorite_count': 85782,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8160,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jul 01 20:20:47 +0000 2021',
  'id': 1410694898601316359,
  'id_str': '1410694898601316359',
  'full_text': 'The science is clear: The best way to protect yourself against the virus and its variants is to be fully vaccinated. \n\nIf you have not been vaccinated, get your COVID-19 shot as soon as possible. Now is not the time to let our guard down.',
  'truncated': False,
  'display_text_range': [0, 238],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5314,
  'favorite_count': 42267,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jul 01 17:15:29 +0000 2021',
  'id': 1410648263934545924,
  'id_str': '1410648263934545924',
  'full_text': 'RT @POTUS: Today’s decision by the Supreme Court undercuts voting rights in this country — and makes it all the more crucial to pass the Fo…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jul 01 17:15:00 +0000 2021',
   'id': 1410648141947412488,
   'id_str': '1410648141947412488',
   'full_text': 'Today’s decision by the Supreme Court undercuts voting rights in this country — and makes it all the more crucial to pass the For the People Act and the John Lewis Voting Rights Advancement Act to restore and expand voting protections.\n \nOur democracy depends on it.',
   'truncated': False,
   'display_text_range': [0, 266],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 13247,
   'favorite_count': 74419,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 13247,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 30 15:50:54 +0000 2021',
  'id': 1410264588730482691,
  'id_str': '1410264588730482691',
  'full_text': '.@TheDemocrats are mobilizing volunteers and organizers, investing in state parties, fighting to protect voting rights, and more. If you can, consider chipping in to keep building the party infrastructure we need to win—from the school board to the Senate.\nhttps://t.co/JPmx9sPyde',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TheDemocrats',
     'name': 'The Democrats',
     'id': 14377605,
     'id_str': '14377605',
     'indices': [1, 14]}],
   'urls': [{'url': 'https://t.co/JPmx9sPyde',
     'expanded_url': 'https://secure.actblue.com/donate/social-june-eoq?refcode=tw_20210630_jrb',
     'display_url': 'secure.actblue.com/donate/social-…',
     'indices': [257, 280]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 871,
  'favorite_count': 5246,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Jun 29 15:24:05 +0000 2021',
  'id': 1409895452430974981,
  'id_str': '1409895452430974981',
  'full_text': 'We, the people, are coming back together. https://t.co/xELkAnPq6z',
  'truncated': False,
  'display_text_range': [0, 41],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1409891340440178692,
     'id_str': '1409891340440178692',
     'indices': [42, 65],
     'media_url': 'http://pbs.twimg.com/media/E5DxmCXXIAQ1yuG.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E5DxmCXXIAQ1yuG.jpg',
     'url': 'https://t.co/xELkAnPq6z',
     'display_url': 'pic.twitter.com/xELkAnPq6z',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1409895452430974981/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1409891340440178692,
     'id_str': '1409891340440178692',
     'indices': [42, 65],
     'media_url': 'http://pbs.twimg.com/media/E5DxmCXXIAQ1yuG.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E5DxmCXXIAQ1yuG.jpg',
     'url': 'https://t.co/xELkAnPq6z',
     'display_url': 'pic.twitter.com/xELkAnPq6z',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1409895452430974981/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'large': {'w': 1280, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [16, 9],
      'duration_millis': 60060,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1409891340440178692/pl/70I76x796Fpf2oOZ.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1409891340440178692/vid/640x360/q5qKkS0eRqLEfFkR.mp4?tag=14'},
       {'bitrate': 2176000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1409891340440178692/vid/1280x720/wzvsybZSown2DM5n.mp4?tag=14'},
       {'bitrate': 288000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1409891340440178692/vid/480x270/R1yIE-GqRUJMQeHC.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://democrats.org/'}},
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1931,
  'favorite_count': 13222,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jun 26 22:02:57 +0000 2021',
  'id': 1408908666896535554,
  'id_str': '1408908666896535554',
  'full_text': 'RT @POTUS: My heart is with the community of Surfside as they grieve their lost loved ones and wait anxiously as search and rescue efforts…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jun 26 22:00:01 +0000 2021',
   'id': 1408907931400261642,
   'id_str': '1408907931400261642',
   'full_text': 'My heart is with the community of Surfside as they grieve their lost loved ones and wait anxiously as search and rescue efforts continue. \n\nYesterday I spoke with Gov. DeSantis to let him know that we are ready to provide assistance as needed by state and local officials.',
   'truncated': False,
   'display_text_range': [0, 272],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3625,
   'favorite_count': 35092,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3625,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jun 26 17:03:35 +0000 2021',
  'id': 1408833331282780167,
  'id_str': '1408833331282780167',
  'full_text': 'It took a herculean effort across the globe—including the ingenuity of scientists, building on decades of research—to develop a vaccine. As a result, deaths from COVID-19 are plummeting. Our economy is rebounding. And millions of Americans are getting back to living their lives. https://t.co/lqwfh0Nj21',
  'truncated': False,
  'display_text_range': [0, 279],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1408831185984315397,
     'id_str': '1408831185984315397',
     'indices': [280, 303],
     'media_url': 'http://pbs.twimg.com/media/E40uKodWEAAhUA5.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E40uKodWEAAhUA5.jpg',
     'url': 'https://t.co/lqwfh0Nj21',
     'display_url': 'pic.twitter.com/lqwfh0Nj21',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1408833331282780167/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1408831185984315397,
     'id_str': '1408831185984315397',
     'indices': [280, 303],
     'media_url': 'http://pbs.twimg.com/media/E40uKodWEAAhUA5.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E40uKodWEAAhUA5.jpg',
     'url': 'https://t.co/lqwfh0Nj21',
     'display_url': 'pic.twitter.com/lqwfh0Nj21',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1408833331282780167/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 25859,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1408831185984315397/pl/8hLpBhQMn557U2ln.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1408831185984315397/vid/540x540/-D_bVlD0hX7HWcJg.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1408831185984315397/vid/320x320/cMwGdZwib7ebSlK9.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1408831185984315397/vid/720x720/BE27wSnQicnmiQZ_.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1909,
  'favorite_count': 14992,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 24 20:16:40 +0000 2021',
  'id': 1408157145695232000,
  'id_str': '1408157145695232000',
  'full_text': 'RT @POTUS: This bipartisan agreement represents the largest investment in public transit in American history. The largest investment in rai…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jun 24 18:12:19 +0000 2021',
   'id': 1408125850919313409,
   'id_str': '1408125850919313409',
   'full_text': 'This bipartisan agreement represents the largest investment in public transit in American history. The largest investment in rail since the creation of Amtrak. It will deliver high speed internet to every American home and replace 100% of our nation’s lead pipes.',
   'truncated': False,
   'display_text_range': [0, 263],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3337,
   'favorite_count': 22711,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3337,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 24 16:32:55 +0000 2021',
  'id': 1408100836778123277,
  'id_str': '1408100836778123277',
  'full_text': 'RT @POTUS: Here’s the deal: The Delta variant is more contagious, it’s deadlier, and it’s spreading quickly around the world – leaving youn…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jun 24 12:11:14 +0000 2021',
   'id': 1408034982556274688,
   'id_str': '1408034982556274688',
   'full_text': 'Here’s the deal: The Delta variant is more contagious, it’s deadlier, and it’s spreading quickly around the world – leaving young, unvaccinated people more vulnerable than ever. Please, get vaccinated if you haven’t already. Let’s head off this strain before it’s too late. https://t.co/9gBeRpvCe8',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1408034858027438083,
      'id_str': '1408034858027438083',
      'indices': [274, 297],
      'media_url': 'http://pbs.twimg.com/media/E4pYWl8WYAY2z7b.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E4pYWl8WYAY2z7b.jpg',
      'url': 'https://t.co/9gBeRpvCe8',
      'display_url': 'pic.twitter.com/9gBeRpvCe8',
      'expanded_url': 'https://twitter.com/POTUS/status/1408034982556274688/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1408034858027438083,
      'id_str': '1408034858027438083',
      'indices': [274, 297],
      'media_url': 'http://pbs.twimg.com/media/E4pYWl8WYAY2z7b.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E4pYWl8WYAY2z7b.jpg',
      'url': 'https://t.co/9gBeRpvCe8',
      'display_url': 'pic.twitter.com/9gBeRpvCe8',
      'expanded_url': 'https://twitter.com/POTUS/status/1408034982556274688/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 128795,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1408034858027438083/vid/720x720/Z6jmmzS2Jv8eW0Y3.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1408034858027438083/vid/540x540/qK7VjAgv4nHgo3a5.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1408034858027438083/pl/P-L4nLdvz8ILUPSd.m3u8?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1408034858027438083/vid/320x320/gUfZ9ZO34i__e9Vn.mp4?tag=14'}]},
      'additional_media_info': {'title': 'Dr. Fauci on the Delta Variant',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9294,
   'favorite_count': 32501,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9294,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 23 22:20:00 +0000 2021',
  'id': 1407825795075264516,
  'id_str': '1407825795075264516',
  'full_text': 'It’s a simple proposition: Who do you love? https://t.co/jDUjB9J6pL',
  'truncated': False,
  'display_text_range': [0, 43],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1407803950523367441,
     'id_str': '1407803950523367441',
     'indices': [44, 67],
     'media_url': 'http://pbs.twimg.com/media/E4mGrMAXIAERuxI.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E4mGrMAXIAERuxI.jpg',
     'url': 'https://t.co/jDUjB9J6pL',
     'display_url': 'pic.twitter.com/jDUjB9J6pL',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1407825795075264516/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1407803950523367441,
     'id_str': '1407803950523367441',
     'indices': [44, 67],
     'media_url': 'http://pbs.twimg.com/media/E4mGrMAXIAERuxI.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E4mGrMAXIAERuxI.jpg',
     'url': 'https://t.co/jDUjB9J6pL',
     'display_url': 'pic.twitter.com/jDUjB9J6pL',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1407825795075264516/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 26693,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1407803950523367441/vid/540x540/Lnm7bBnzr__GQXYv.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1407803950523367441/pl/tSHDSf0bdH_3S8XV.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1407803950523367441/vid/320x320/XX4xjHlwhoSs_j61.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1407803950523367441/vid/720x720/EdxEwNA24me-dkwY.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1578,
  'favorite_count': 14339,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 23 21:29:55 +0000 2021',
  'id': 1407813193158860806,
  'id_str': '1407813193158860806',
  'full_text': 'RT @POTUS: The fact is we’ve seen a surge in gun violence across the country since the beginning of the pandemic. It’s unacceptable — and w…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Jun 23 21:25:42 +0000 2021',
   'id': 1407812132037664768,
   'id_str': '1407812132037664768',
   'full_text': 'The fact is we’ve seen a surge in gun violence across the country since the beginning of the pandemic. It’s unacceptable — and we’ve got to take action to combat it. That’s why we’re announcing a comprehensive approach to prevent and respond to gun crime and ensure public safety.',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4670,
   'favorite_count': 36809,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4670,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jun 22 18:05:03 +0000 2021',
  'id': 1407399246756724736,
  'id_str': '1407399246756724736',
  'full_text': 'RT @POTUS: We can’t sit idly by while democracy is in peril – here, in America. We need to protect the sacred right to vote and ensure “We…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jun 22 17:50:40 +0000 2021',
   'id': 1407395627982524417,
   'id_str': '1407395627982524417',
   'full_text': 'We can’t sit idly by while democracy is in peril – here, in America. We need to protect the sacred right to vote and ensure “We the People” choose our leaders, the very foundation on which our democracy rests. We urgently need the For The People Act.\n\nSend it to my desk.',
   'truncated': False,
   'display_text_range': [0, 271],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11533,
   'favorite_count': 69435,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11533,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jun 21 21:26:00 +0000 2021',
  'id': 1407087431908737024,
  'id_str': '1407087431908737024',
  'full_text': 'Together, we are going to build an economy that rewards work—not just wealth. An economy that works for the backbone of this country: the people who get up every single day to work hard to provide for their families, who are just looking for a little bit of breathing room.',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4572,
  'favorite_count': 42311,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jun 21 14:05:02 +0000 2021',
  'id': 1406976458761900032,
  'id_str': '1406976458761900032',
  'full_text': 'RT @POTUS: The Child Tax Credit means help directly in the bank accounts of the families who need it. Nearly all working families will auto…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Jun 21 13:30:37 +0000 2021',
   'id': 1406967795976450051,
   'id_str': '1406967795976450051',
   'full_text': 'The Child Tax Credit means help directly in the bank accounts of the families who need it. Nearly all working families will automatically get monthly payments starting July 15th – no action needed. Head to https://t.co/P2RRSAlEgx for more information. https://t.co/U1eSsBi18p',
   'truncated': False,
   'display_text_range': [0, 251],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/P2RRSAlEgx',
      'expanded_url': 'http://childtaxcredit.gov',
      'display_url': 'childtaxcredit.gov',
      'indices': [206, 229]}],
    'media': [{'id': 1406967661788078081,
      'id_str': '1406967661788078081',
      'indices': [252, 275],
      'media_url': 'http://pbs.twimg.com/media/E4aNwEfX0AUmQFW.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E4aNwEfX0AUmQFW.jpg',
      'url': 'https://t.co/U1eSsBi18p',
      'display_url': 'pic.twitter.com/U1eSsBi18p',
      'expanded_url': 'https://twitter.com/POTUS/status/1406967795976450051/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1406967661788078081,
      'id_str': '1406967661788078081',
      'indices': [252, 275],
      'media_url': 'http://pbs.twimg.com/media/E4aNwEfX0AUmQFW.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E4aNwEfX0AUmQFW.jpg',
      'url': 'https://t.co/U1eSsBi18p',
      'display_url': 'pic.twitter.com/U1eSsBi18p',
      'expanded_url': 'https://twitter.com/POTUS/status/1406967795976450051/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 123540,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1406967661788078081/vid/540x540/BVY72k5a4flmjPqq.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1406967661788078081/vid/720x720/_VXHacxyQfHZncUa.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1406967661788078081/pl/wosmQPCPyIwTdkPz.m3u8?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1406967661788078081/vid/320x320/tDjog3nULsr7XCvJ.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3528,
   'favorite_count': 16693,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3528,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jun 20 20:29:40 +0000 2021',
  'id': 1406710864619704320,
  'id_str': '1406710864619704320',
  'full_text': "RT @POTUS: Happy Father's Day to the fathers, stepfathers, grandfathers, and father figures who enrich our character, love us unconditional…",
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Jun 20 17:16:00 +0000 2021',
   'id': 1406662126912081923,
   'id_str': '1406662126912081923',
   'full_text': "Happy Father's Day to the fathers, stepfathers, grandfathers, and father figures who enrich our character, love us unconditionally, and give so much of themselves every day so we can live lives worthy of their dreams and sacrifices.",
   'truncated': False,
   'display_text_range': [0, 232],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10146,
   'favorite_count': 107431,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10146,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jun 19 14:05:14 +0000 2021',
  'id': 1406251731051233282,
  'id_str': '1406251731051233282',
  'full_text': 'To honor the true meaning of Juneteenth, we have to continue toward that promise of equality for all. https://t.co/tu6m038Y8T',
  'truncated': False,
  'display_text_range': [0, 101],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1406251685652140040,
     'id_str': '1406251685652140040',
     'indices': [102, 125],
     'media_url': 'http://pbs.twimg.com/media/E4QCfnFWEAA9sOn.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E4QCfnFWEAA9sOn.jpg',
     'url': 'https://t.co/tu6m038Y8T',
     'display_url': 'pic.twitter.com/tu6m038Y8T',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1406251731051233282/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1406251685652140040,
     'id_str': '1406251685652140040',
     'indices': [102, 125],
     'media_url': 'http://pbs.twimg.com/media/E4QCfnFWEAA9sOn.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E4QCfnFWEAA9sOn.jpg',
     'url': 'https://t.co/tu6m038Y8T',
     'display_url': 'pic.twitter.com/tu6m038Y8T',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1406251731051233282/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 26527,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1406251685652140040/vid/320x320/Q43L7bG0DWAD2E92.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1406251685652140040/vid/540x540/kIJce0HFLAAkvpMR.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1406251685652140040/vid/720x720/mIQt2sWWtm9eJ81J.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1406251685652140040/pl/Ti5WGMSaNCghqjNU.m3u8?tag=14'}]},
     'additional_media_info': {'title': 'Juneteenth', 'monetizable': False}}]},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2159,
  'favorite_count': 18512,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jun 18 20:14:04 +0000 2021',
  'id': 1405982163711954946,
  'id_str': '1405982163711954946',
  'full_text': 'RT @POTUS: Today, we’ve passed 300 million shots in 150 days. \nWhen I took office, our nation was in crisis. Today, the virus is in retreat…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Jun 18 19:09:59 +0000 2021',
   'id': 1405966038982930437,
   'id_str': '1405966038982930437',
   'full_text': 'Today, we’ve passed 300 million shots in 150 days. \nWhen I took office, our nation was in crisis. Today, the virus is in retreat and our economy has smashed previous records for job growth. \n \nThat’s just four months, folks.',
   'truncated': False,
   'display_text_range': [0, 224],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 12424,
   'favorite_count': 129577,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 12424,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 17 22:52:03 +0000 2021',
  'id': 1405659535101075459,
  'id_str': '1405659535101075459',
  'full_text': 'RT @POTUS: Juneteenth is officially a federal holiday.',
  'truncated': False,
  'display_text_range': [0, 54],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jun 17 20:20:08 +0000 2021',
   'id': 1405621303256698880,
   'id_str': '1405621303256698880',
   'full_text': 'Juneteenth is officially a federal holiday.',
   'truncated': False,
   'display_text_range': [0, 43],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 34107,
   'favorite_count': 272307,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 34107,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 17 17:55:46 +0000 2021',
  'id': 1405584970186362884,
  'id_str': '1405584970186362884',
  'full_text': 'It’s a big deal that the Affordable Care Act is here to stay. Reminder: You can sign up for health care at https://t.co/3CYKhP8ZoR—help us spread the word.',
  'truncated': False,
  'display_text_range': [0, 155],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/3CYKhP8ZoR',
     'expanded_url': 'http://healthcare.gov',
     'display_url': 'healthcare.gov',
     'indices': [107, 130]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3398,
  'favorite_count': 21787,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 16 21:14:26 +0000 2021',
  'id': 1405272580538306565,
  'id_str': '1405272580538306565',
  'full_text': "We're on the right track. The American Rescue Plan laid a strong foundation for a new economy that brings everybody along, but it's just the first step. We must pass the American Jobs Plan to build an economy that works for everyone.",
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4946,
  'favorite_count': 46735,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 16 00:01:22 +0000 2021',
  'id': 1404952202398076930,
  'id_str': '1404952202398076930',
  'full_text': 'RT @POTUS: Today we passed a grim milestone: 600,000 lives lost from COVID-19. My heart goes out to all those who’ve lost a loved one. I kn…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jun 15 22:08:08 +0000 2021',
   'id': 1404923705587871748,
   'id_str': '1404923705587871748',
   'full_text': 'Today we passed a grim milestone: 600,000 lives lost from COVID-19. My heart goes out to all those who’ve lost a loved one. I know that black hole that seems to consume you, but a time will come when their memory brings a smile to your lips before it brings a tear to your eyes.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8624,
   'favorite_count': 74576,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8624,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jun 15 21:23:11 +0000 2021',
  'id': 1404912394401423366,
  'id_str': '1404912394401423366',
  'full_text': 'We’re seeing a coordinated attack on voting rights in this country. It’s Jim Crow in the 21st century, and it must end.\n\nCongress must enact legislation to make it easier for all eligible Americans to access the ballot box and prevent attacks on the sacred right to vote.',
  'truncated': False,
  'display_text_range': [0, 271],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 10650,
  'favorite_count': 73430,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jun 15 18:17:19 +0000 2021',
  'id': 1404865621389623296,
  'id_str': '1404865621389623296',
  'full_text': 'RT @POTUS: On this ninth anniversary of DACA, Dreamers deserve lasting stability in the only home they have ever known. Congress must find…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jun 15 17:30:28 +0000 2021',
   'id': 1404853827933720585,
   'id_str': '1404853827933720585',
   'full_text': 'On this ninth anniversary of DACA, Dreamers deserve lasting stability in the only home they have ever known. Congress must find a way to pass legislation with a path to citizenship for Dreamers, farm workers, and TPS recipients.',
   'truncated': False,
   'display_text_range': [0, 228],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3985,
   'favorite_count': 26591,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3985,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jun 15 00:10:25 +0000 2021',
  'id': 1404592092475703297,
  'id_str': '1404592092475703297',
  'full_text': 'Democracy thrives when the infrastructure of democracy is strong; when people have the right to vote freely, fairly, and conveniently; when a free and independent press pursues the truth; when the law applies equally to everyone, regardless of who they are or what they look like.',
  'truncated': False,
  'display_text_range': [0, 280],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9300,
  'favorite_count': 55667,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jun 14 21:26:20 +0000 2021',
  'id': 1404550798059659271,
  'id_str': '1404550798059659271',
  'full_text': 'RT @POTUS: The Transatlantic Alliance is the strong foundation on which our collective security and our shared prosperity are built. It’s a…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Jun 14 20:09:26 +0000 2021',
   'id': 1404531446744858624,
   'id_str': '1404531446744858624',
   'full_text': 'The Transatlantic Alliance is the strong foundation on which our collective security and our shared prosperity are built. It’s an honor to be at NATO HQ today, reaffirming America’s commitment to our 29 Allies and our vision for a more secure future. https://t.co/vUJIszZAvT',
   'truncated': False,
   'display_text_range': [0, 250],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1404531444916031493,
      'id_str': '1404531444916031493',
      'indices': [251, 274],
      'media_url': 'http://pbs.twimg.com/media/E33l6FoWEAUSp5L.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E33l6FoWEAUSp5L.jpg',
      'url': 'https://t.co/vUJIszZAvT',
      'display_url': 'pic.twitter.com/vUJIszZAvT',
      'expanded_url': 'https://twitter.com/POTUS/status/1404531446744858624/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1024, 'h': 545, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 545, 'resize': 'fit'},
       'small': {'w': 680, 'h': 362, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1404531444916031493,
      'id_str': '1404531444916031493',
      'indices': [251, 274],
      'media_url': 'http://pbs.twimg.com/media/E33l6FoWEAUSp5L.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E33l6FoWEAUSp5L.jpg',
      'url': 'https://t.co/vUJIszZAvT',
      'display_url': 'pic.twitter.com/vUJIszZAvT',
      'expanded_url': 'https://twitter.com/POTUS/status/1404531446744858624/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1024, 'h': 545, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 545, 'resize': 'fit'},
       'small': {'w': 680, 'h': 362, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3013,
   'favorite_count': 20442,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3013,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jun 14 00:14:55 +0000 2021',
  'id': 1404230838619979784,
  'id_str': '1404230838619979784',
  'full_text': "The pandemic exposed just how badly we need to invest in the foundation of our country, and in the working people of our country. That's why we proposed the American Jobs Plan—we need to make generational investments today to succeed tomorrow.",
  'truncated': False,
  'display_text_range': [0, 243],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6086,
  'favorite_count': 57936,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jun 13 21:38:38 +0000 2021',
  'id': 1404191506139918337,
  'id_str': '1404191506139918337',
  'full_text': 'RT @POTUS: Honored to have met Her Majesty The Queen at Windsor Castle this afternoon. https://t.co/6GnDMpmQ7w',
  'truncated': False,
  'display_text_range': [0, 110],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1404185227988176899,
     'id_str': '1404185227988176899',
     'indices': [87, 110],
     'media_url': 'http://pbs.twimg.com/media/E3yrBnEWEAM7-qE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E3yrBnEWEAM7-qE.jpg',
     'url': 'https://t.co/6GnDMpmQ7w',
     'display_url': 'pic.twitter.com/6GnDMpmQ7w',
     'expanded_url': 'https://twitter.com/POTUS/status/1404185229741408260/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}},
     'source_status_id': 1404185229741408260,
     'source_status_id_str': '1404185229741408260',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1404185227988176899,
     'id_str': '1404185227988176899',
     'indices': [87, 110],
     'media_url': 'http://pbs.twimg.com/media/E3yrBnEWEAM7-qE.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E3yrBnEWEAM7-qE.jpg',
     'url': 'https://t.co/6GnDMpmQ7w',
     'display_url': 'pic.twitter.com/6GnDMpmQ7w',
     'expanded_url': 'https://twitter.com/POTUS/status/1404185229741408260/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}},
     'source_status_id': 1404185229741408260,
     'source_status_id_str': '1404185229741408260',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Jun 13 21:13:41 +0000 2021',
   'id': 1404185229741408260,
   'id_str': '1404185229741408260',
   'full_text': 'Honored to have met Her Majesty The Queen at Windsor Castle this afternoon. https://t.co/6GnDMpmQ7w',
   'truncated': False,
   'display_text_range': [0, 75],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1404185227988176899,
      'id_str': '1404185227988176899',
      'indices': [76, 99],
      'media_url': 'http://pbs.twimg.com/media/E3yrBnEWEAM7-qE.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E3yrBnEWEAM7-qE.jpg',
      'url': 'https://t.co/6GnDMpmQ7w',
      'display_url': 'pic.twitter.com/6GnDMpmQ7w',
      'expanded_url': 'https://twitter.com/POTUS/status/1404185229741408260/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1404185227988176899,
      'id_str': '1404185227988176899',
      'indices': [76, 99],
      'media_url': 'http://pbs.twimg.com/media/E3yrBnEWEAM7-qE.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E3yrBnEWEAM7-qE.jpg',
      'url': 'https://t.co/6GnDMpmQ7w',
      'display_url': 'pic.twitter.com/6GnDMpmQ7w',
      'expanded_url': 'https://twitter.com/POTUS/status/1404185229741408260/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10360,
   'favorite_count': 183580,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10360,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jun 12 18:13:25 +0000 2021',
  'id': 1403777473800773635,
  'id_str': '1403777473800773635',
  'full_text': 'The COVID-19 vaccine is free, but lack of access to child care can be a barrier. That’s why four of our nation’s largest child care providers are offering free care for parents and caregivers getting vaccinated from now until July 4: https://t.co/nAUPgjxTWI',
  'truncated': False,
  'display_text_range': [0, 257],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/nAUPgjxTWI',
     'expanded_url': 'http://vaccines.gov/incentives.html',
     'display_url': 'vaccines.gov/incentives.html',
     'indices': [234, 257]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2284,
  'favorite_count': 16065,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jun 12 17:11:38 +0000 2021',
  'id': 1403761926539251718,
  'id_str': '1403761926539251718',
  'full_text': 'RT @POTUS: Five years ago, we suffered the deadliest attack affecting the LGBTQ+ community in our history. Within minutes, Pulse Nightclub…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jun 12 16:23:09 +0000 2021',
   'id': 1403749724256194562,
   'id_str': '1403749724256194562',
   'full_text': 'Five years ago, we suffered the deadliest attack affecting the LGBTQ+ community in our history. Within minutes, Pulse Nightclub turned from a place of acceptance and joy to a place of unspeakable pain.\n\nAs we remember those we lost, we must recommit to honoring them with action.',
   'truncated': False,
   'display_text_range': [0, 279],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8394,
   'favorite_count': 63856,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8394,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jun 11 19:19:56 +0000 2021',
  'id': 1403431826035720196,
  'id_str': '1403431826035720196',
  'full_text': 'RT @POTUS: Diplomacy is back. https://t.co/27D316PAqB',
  'truncated': False,
  'display_text_range': [0, 53],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1403421659445481480,
     'id_str': '1403421659445481480',
     'indices': [30, 53],
     'media_url': 'http://pbs.twimg.com/media/E3n0kElWUAghULk.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E3n0kElWUAghULk.jpg',
     'url': 'https://t.co/27D316PAqB',
     'display_url': 'pic.twitter.com/27D316PAqB',
     'expanded_url': 'https://twitter.com/POTUS/status/1403421661001568258/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}},
     'source_status_id': 1403421661001568258,
     'source_status_id_str': '1403421661001568258',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1403421659445481480,
     'id_str': '1403421659445481480',
     'indices': [30, 53],
     'media_url': 'http://pbs.twimg.com/media/E3n0kElWUAghULk.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E3n0kElWUAghULk.jpg',
     'url': 'https://t.co/27D316PAqB',
     'display_url': 'pic.twitter.com/27D316PAqB',
     'expanded_url': 'https://twitter.com/POTUS/status/1403421661001568258/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}},
     'source_status_id': 1403421661001568258,
     'source_status_id_str': '1403421661001568258',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Jun 11 18:39:32 +0000 2021',
   'id': 1403421661001568258,
   'id_str': '1403421661001568258',
   'full_text': 'Diplomacy is back. https://t.co/27D316PAqB',
   'truncated': False,
   'display_text_range': [0, 18],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1403421659445481480,
      'id_str': '1403421659445481480',
      'indices': [19, 42],
      'media_url': 'http://pbs.twimg.com/media/E3n0kElWUAghULk.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E3n0kElWUAghULk.jpg',
      'url': 'https://t.co/27D316PAqB',
      'display_url': 'pic.twitter.com/27D316PAqB',
      'expanded_url': 'https://twitter.com/POTUS/status/1403421661001568258/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1403421659445481480,
      'id_str': '1403421659445481480',
      'indices': [19, 42],
      'media_url': 'http://pbs.twimg.com/media/E3n0kElWUAghULk.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E3n0kElWUAghULk.jpg',
      'url': 'https://t.co/27D316PAqB',
      'display_url': 'pic.twitter.com/27D316PAqB',
      'expanded_url': 'https://twitter.com/POTUS/status/1403421661001568258/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 15785,
   'favorite_count': 179505,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 15785,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 10 20:49:47 +0000 2021',
  'id': 1403092050292129796,
  'id_str': '1403092050292129796',
  'full_text': 'RT @POTUS: Today, I’m announcing that the United States will donate half a billion new Pfizer vaccines to 92 low- and lower middle-income c…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jun 10 17:44:39 +0000 2021',
   'id': 1403045458277249024,
   'id_str': '1403045458277249024',
   'full_text': 'Today, I’m announcing that the United States will donate half a billion new Pfizer vaccines to 92 low- and lower middle-income countries. \n\nThese Pfizer vaccines will save millions of lives around the world, and be produced through the power of American manufacturing.',
   'truncated': False,
   'display_text_range': [0, 268],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10804,
   'favorite_count': 104248,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10804,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 10 17:12:29 +0000 2021',
  'id': 1403037362670743559,
  'id_str': '1403037362670743559',
  'full_text': 'COVID-19 vaccines are free. Get vaccinated, folks.',
  'truncated': False,
  'display_text_range': [0, 50],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 18349,
  'favorite_count': 162848,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 10 16:10:08 +0000 2021',
  'id': 1403021672735719429,
  'id_str': '1403021672735719429',
  'full_text': 'RT @POTUS: On my first foreign trip, we’re going to make it clear — the United States and the democracies of the world are standing togethe…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jun 10 15:43:17 +0000 2021',
   'id': 1403014916827721733,
   'id_str': '1403014916827721733',
   'full_text': 'On my first foreign trip, we’re going to make it clear — the United States and the democracies of the world are standing together to tackle the challenges of our new age. https://t.co/Mb0eDT00UK',
   'truncated': False,
   'display_text_range': [0, 170],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1403014851673346050,
      'id_str': '1403014851673346050',
      'indices': [171, 194],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1403014851673346050/img/OtXteIqHlQWOqJ-_.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1403014851673346050/img/OtXteIqHlQWOqJ-_.jpg',
      'url': 'https://t.co/Mb0eDT00UK',
      'display_url': 'pic.twitter.com/Mb0eDT00UK',
      'expanded_url': 'https://twitter.com/POTUS/status/1403014916827721733/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1403014851673346050,
      'id_str': '1403014851673346050',
      'indices': [171, 194],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1403014851673346050/img/OtXteIqHlQWOqJ-_.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1403014851673346050/img/OtXteIqHlQWOqJ-_.jpg',
      'url': 'https://t.co/Mb0eDT00UK',
      'display_url': 'pic.twitter.com/Mb0eDT00UK',
      'expanded_url': 'https://twitter.com/POTUS/status/1403014916827721733/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 28779,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1403014851673346050/pl/zbrycP6rQGPuS26y.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1403014851673346050/vid/540x540/lDDvOXCGdDnCLTEs.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1403014851673346050/vid/720x720/kb9NXgSVs6VqfQ3_.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1403014851673346050/vid/320x320/QIL25F3LJGrLZulg.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3219,
   'favorite_count': 23675,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3219,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 09 18:52:22 +0000 2021',
  'id': 1402700112292425736,
  'id_str': '1402700112292425736',
  'full_text': 'LGBTQ+ rights are human rights. As we celebrate this month, we won’t rest until full equality for LGBTQ+ Americans is finally achieved and codified into law. The Senate must pass the Equality Act.',
  'truncated': False,
  'display_text_range': [0, 196],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9747,
  'favorite_count': 87831,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 09 13:37:13 +0000 2021',
  'id': 1402620803154317315,
  'id_str': '1402620803154317315',
  'full_text': 'RT @POTUS: I’m on my way to the U.K. and Europe today for the first foreign trip of my presidency. I know that democracies can rally togeth…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Jun 09 13:36:26 +0000 2021',
   'id': 1402620607792128007,
   'id_str': '1402620607792128007',
   'full_text': 'I’m on my way to the U.K. and Europe today for the first foreign trip of my presidency. I know that democracies can rally together to meet the challenges of this new age – this week, in Europe, we have the chance to prove that.',
   'truncated': False,
   'display_text_range': [0, 227],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7394,
   'favorite_count': 88902,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7394,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jun 08 22:27:19 +0000 2021',
  'id': 1402391817065308168,
  'id_str': '1402391817065308168',
  'full_text': 'We said from the very beginning: there’s no chance for our economy to come back unless we beat the pandemic. And now, after more than a year of darkness, we’re emerging into the light.\n\nGet your vaccine and do your part to help get our country back on track.',
  'truncated': False,
  'display_text_range': [0, 258],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3760,
  'favorite_count': 36594,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jun 08 17:56:51 +0000 2021',
  'id': 1402323753758085128,
  'id_str': '1402323753758085128',
  'full_text': 'RT @POTUS: Folks, the Delta variant — a highly infectious COVID-19 strain — is spreading rapidly among young people between 12 and 20 years…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jun 08 17:49:00 +0000 2021',
   'id': 1402321777200611336,
   'id_str': '1402321777200611336',
   'full_text': 'Folks, the Delta variant — a highly infectious COVID-19 strain — is spreading rapidly among young people between 12 and 20 years old in the U.K. If you’re young and haven’t gotten your shot yet, it really is time. It’s the best way to protect yourself and those you love.',
   'truncated': False,
   'display_text_range': [0, 271],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 19859,
   'favorite_count': 91139,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 19859,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Jun 07 19:59:38 +0000 2021',
  'id': 1401992264516308995,
  'id_str': '1401992264516308995',
  'full_text': 'The United States is the only industrialized country in the world with no national paid family leave policy. It’s a disgrace. \n\nWe must pass the American Families Plan.',
  'truncated': False,
  'display_text_range': [0, 168],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 8270,
  'favorite_count': 84051,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jun 06 20:11:34 +0000 2021',
  'id': 1401632881332699138,
  'id_str': '1401632881332699138',
  'full_text': 'In the competition for the 21st century, the future will be built right here in America.',
  'truncated': False,
  'display_text_range': [0, 88],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3739,
  'favorite_count': 43361,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Jun 06 16:41:06 +0000 2021',
  'id': 1401579915577806849,
  'id_str': '1401579915577806849',
  'full_text': 'RT @POTUS: I met with survivors of the Tulsa Massacre this week to help fill the silence. Because in silence, wounds deepen. And, as painfu…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Jun 06 15:57:27 +0000 2021',
   'id': 1401568931622555652,
   'id_str': '1401568931622555652',
   'full_text': 'I met with survivors of the Tulsa Massacre this week to help fill the silence. Because in silence, wounds deepen. And, as painful as it is, only in remembrance do wounds heal. https://t.co/0mLMRAhJiD',
   'truncated': False,
   'display_text_range': [0, 175],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1401568829579403270,
      'id_str': '1401568829579403270',
      'indices': [176, 199],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1401568829579403270/img/W8WL8lWRhR8B-cSn.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1401568829579403270/img/W8WL8lWRhR8B-cSn.jpg',
      'url': 'https://t.co/0mLMRAhJiD',
      'display_url': 'pic.twitter.com/0mLMRAhJiD',
      'expanded_url': 'https://twitter.com/POTUS/status/1401568931622555652/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1401568829579403270,
      'id_str': '1401568829579403270',
      'indices': [176, 199],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1401568829579403270/img/W8WL8lWRhR8B-cSn.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1401568829579403270/img/W8WL8lWRhR8B-cSn.jpg',
      'url': 'https://t.co/0mLMRAhJiD',
      'display_url': 'pic.twitter.com/0mLMRAhJiD',
      'expanded_url': 'https://twitter.com/POTUS/status/1401568931622555652/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 59726,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1401568829579403270/vid/320x320/5v7G3HehrgC7zFR8.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1401568829579403270/pl/Xed3qaZxSKao4qdq.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1401568829579403270/vid/540x540/hPAATdH8hxivZEm6.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1401568829579403270/vid/720x720/svm2c7K7KYUgLxIO.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4229,
   'favorite_count': 27658,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4229,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jun 05 22:51:52 +0000 2021',
  'id': 1401310832882077696,
  'id_str': '1401310832882077696',
  'full_text': 'We’re counting on you to get vaccinated: https://t.co/EwdQ2dFHwG.',
  'truncated': False,
  'display_text_range': [0, 65],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/EwdQ2dFHwG',
     'expanded_url': 'http://vaccines.gov',
     'display_url': 'vaccines.gov',
     'indices': [41, 64]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3503,
  'favorite_count': 33123,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Jun 05 18:24:05 +0000 2021',
  'id': 1401243444127879170,
  'id_str': '1401243444127879170',
  'full_text': 'RT @POTUS: Great news folks: we hit record-high health care enrollment. 31 million people now have coverage through the Affordable Care Act…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Jun 05 17:03:53 +0000 2021',
   'id': 1401223261820751883,
   'id_str': '1401223261820751883',
   'full_text': 'Great news folks: we hit record-high health care enrollment. 31 million people now have coverage through the Affordable Care Act. Couldn’t think of a better person to celebrate this milestone with than President Obama, so I gave him a call. https://t.co/QtLeskSNnY',
   'truncated': False,
   'display_text_range': [0, 240],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1401223060754141187,
      'id_str': '1401223060754141187',
      'indices': [241, 264],
      'media_url': 'http://pbs.twimg.com/media/E3IlIPxWEAYMNSL.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E3IlIPxWEAYMNSL.jpg',
      'url': 'https://t.co/QtLeskSNnY',
      'display_url': 'pic.twitter.com/QtLeskSNnY',
      'expanded_url': 'https://twitter.com/POTUS/status/1401223261820751883/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1401223060754141187,
      'id_str': '1401223060754141187',
      'indices': [241, 264],
      'media_url': 'http://pbs.twimg.com/media/E3IlIPxWEAYMNSL.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E3IlIPxWEAYMNSL.jpg',
      'url': 'https://t.co/QtLeskSNnY',
      'display_url': 'pic.twitter.com/QtLeskSNnY',
      'expanded_url': 'https://twitter.com/POTUS/status/1401223261820751883/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 180180,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1401223060754141187/vid/720x720/jh6alIlhIHvQEHBz.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1401223060754141187/vid/320x320/jjyYvlonPjGbarm8.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1401223060754141187/pl/gwouuB7SYRE4K93K.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1401223060754141187/vid/540x540/BwGh_MxNbj3GrZ0p.mp4?tag=14'}]},
      'additional_media_info': {'title': 'A Weekly Conversation: On the Line with President Obama',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11441,
   'favorite_count': 67017,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11441,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Jun 05 17:36:46 +0000 2021',
  'id': 1401231536423329793,
  'id_str': '1401231536423329793',
  'full_text': 'After decades of disinvestment, our roads, bridges, and water systems are crumbling.\n\nWe must pass the American Jobs Plan. Together, we will rebuild our country’s infrastructure and create millions of good-paying union jobs in the process.',
  'truncated': False,
  'display_text_range': [0, 239],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4375,
  'favorite_count': 32409,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jun 04 23:25:40 +0000 2021',
  'id': 1400956951559823363,
  'id_str': '1400956951559823363',
  'full_text': "Now is the time to build on the foundation we've laid. Because while the progress we’ve made is undeniable, it is not assured. That's why we need the American Jobs Plan and the American Families Plan—let's make those investments today to be able to continue to succeed tomorrow.",
  'truncated': False,
  'display_text_range': [0, 278],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2456,
  'favorite_count': 22559,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Jun 04 20:31:22 +0000 2021',
  'id': 1400913089164365831,
  'id_str': '1400913089164365831',
  'full_text': 'Unemployment is at its lowest level since the pandemic started. Our plan is working. And we’re not going to let up now. https://t.co/wqkS8Sbs6U',
  'truncated': False,
  'display_text_range': [0, 119],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1400907873195016198,
     'id_str': '1400907873195016198',
     'indices': [120, 143],
     'media_url': 'http://pbs.twimg.com/media/E3EHY1wXoAI3QGZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E3EHY1wXoAI3QGZ.jpg',
     'url': 'https://t.co/wqkS8Sbs6U',
     'display_url': 'pic.twitter.com/wqkS8Sbs6U',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1400913089164365831/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1400907873195016198,
     'id_str': '1400907873195016198',
     'indices': [120, 143],
     'media_url': 'http://pbs.twimg.com/media/E3EHY1wXoAI3QGZ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E3EHY1wXoAI3QGZ.jpg',
     'url': 'https://t.co/wqkS8Sbs6U',
     'display_url': 'pic.twitter.com/wqkS8Sbs6U',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1400913089164365831/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 39706,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1400907873195016198/pl/U_PEpx2-eaWpSHVm.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400907873195016198/vid/540x540/Khp72jlM6XES5GBT.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400907873195016198/vid/720x720/w_nlZhB1wtB1JZAr.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400907873195016198/vid/320x320/AxOWWpJsUVGhcC_p.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2027,
  'favorite_count': 16012,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Jun 04 13:59:14 +0000 2021',
  'id': 1400814403566587918,
  'id_str': '1400814403566587918',
  'full_text': 'RT @POTUS: Today’s jobs report shows historic progress for American families and the American economy. We added 559,000 jobs in May, create…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Jun 04 13:58:47 +0000 2021',
   'id': 1400814292870565892,
   'id_str': '1400814292870565892',
   'full_text': 'Today’s jobs report shows historic progress for American families and the American economy. We added 559,000 jobs in May, created a record two million jobs in our first four months, and unemployment is at its lowest level since the pandemic started.\n\nAmerica is on the move again.',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5247,
   'favorite_count': 36238,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5247,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 03 21:50:11 +0000 2021',
  'id': 1400570532966420483,
  'id_str': '1400570532966420483',
  'full_text': "This is the United States of America. There's not a single thing beyond our capacity when we act together.",
  'truncated': False,
  'display_text_range': [0, 106],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7379,
  'favorite_count': 87014,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 03 21:18:48 +0000 2021',
  'id': 1400562637491126274,
  'id_str': '1400562637491126274',
  'full_text': 'RT @POTUS: Unemployment claims are down 50% and 64% of adults are vaccinated since I took office. That’s progress. https://t.co/Ih9yrK5azD',
  'truncated': False,
  'display_text_range': [0, 138],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1400562086321721347,
     'id_str': '1400562086321721347',
     'indices': [115, 138],
     'media_url': 'http://pbs.twimg.com/media/E2_LzAkWEAMhzZP.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E2_LzAkWEAMhzZP.jpg',
     'url': 'https://t.co/Ih9yrK5azD',
     'display_url': 'pic.twitter.com/Ih9yrK5azD',
     'expanded_url': 'https://twitter.com/POTUS/status/1400562088108560385/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
     'source_status_id': 1400562088108560385,
     'source_status_id_str': '1400562088108560385',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1400562086321721347,
     'id_str': '1400562086321721347',
     'indices': [115, 138],
     'media_url': 'http://pbs.twimg.com/media/E2_LzAkWEAMhzZP.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E2_LzAkWEAMhzZP.jpg',
     'url': 'https://t.co/Ih9yrK5azD',
     'display_url': 'pic.twitter.com/Ih9yrK5azD',
     'expanded_url': 'https://twitter.com/POTUS/status/1400562088108560385/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
     'source_status_id': 1400562088108560385,
     'source_status_id_str': '1400562088108560385',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Jun 03 21:16:37 +0000 2021',
   'id': 1400562088108560385,
   'id_str': '1400562088108560385',
   'full_text': 'Unemployment claims are down 50% and 64% of adults are vaccinated since I took office. That’s progress. https://t.co/Ih9yrK5azD',
   'truncated': False,
   'display_text_range': [0, 103],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1400562086321721347,
      'id_str': '1400562086321721347',
      'indices': [104, 127],
      'media_url': 'http://pbs.twimg.com/media/E2_LzAkWEAMhzZP.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E2_LzAkWEAMhzZP.jpg',
      'url': 'https://t.co/Ih9yrK5azD',
      'display_url': 'pic.twitter.com/Ih9yrK5azD',
      'expanded_url': 'https://twitter.com/POTUS/status/1400562088108560385/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1400562086321721347,
      'id_str': '1400562086321721347',
      'indices': [104, 127],
      'media_url': 'http://pbs.twimg.com/media/E2_LzAkWEAMhzZP.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E2_LzAkWEAMhzZP.jpg',
      'url': 'https://t.co/Ih9yrK5azD',
      'display_url': 'pic.twitter.com/Ih9yrK5azD',
      'expanded_url': 'https://twitter.com/POTUS/status/1400562088108560385/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6324,
   'favorite_count': 47786,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6324,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Jun 03 00:53:44 +0000 2021',
  'id': 1400254337914449923,
  'id_str': '1400254337914449923',
  'full_text': 'It’s going to take everyone working together to get 70% of adult Americans vaccinated. https://t.co/UIb8GlS8EU',
  'truncated': False,
  'display_text_range': [0, 86],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1400253577105494023,
     'id_str': '1400253577105494023',
     'indices': [87, 110],
     'media_url': 'http://pbs.twimg.com/media/E26zqf1WYAEejPJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E26zqf1WYAEejPJ.jpg',
     'url': 'https://t.co/UIb8GlS8EU',
     'display_url': 'pic.twitter.com/UIb8GlS8EU',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1400254337914449923/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1400253577105494023,
     'id_str': '1400253577105494023',
     'indices': [87, 110],
     'media_url': 'http://pbs.twimg.com/media/E26zqf1WYAEejPJ.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E26zqf1WYAEejPJ.jpg',
     'url': 'https://t.co/UIb8GlS8EU',
     'display_url': 'pic.twitter.com/UIb8GlS8EU',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1400254337914449923/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 34159,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400253577105494023/vid/320x320/ssD6uExY0XhcAzQt.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400253577105494023/vid/540x540/m2Ow2B525Kxy2t2e.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1400253577105494023/pl/u-eS6pRsEHaJ6N4O.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400253577105494023/vid/720x720/GUX1DmHntCUVmpj1.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1746,
  'favorite_count': 14107,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 02 21:11:42 +0000 2021',
  'id': 1400198463955083268,
  'id_str': '1400198463955083268',
  'full_text': 'What happened in Tulsa 100 years ago was not a riot—it was a massacre. https://t.co/V305EfjQLZ',
  'truncated': False,
  'display_text_range': [0, 70],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1400197493225369600,
     'id_str': '1400197493225369600',
     'indices': [71, 94],
     'media_url': 'http://pbs.twimg.com/media/E26AY4AXEAURDAg.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E26AY4AXEAURDAg.jpg',
     'url': 'https://t.co/V305EfjQLZ',
     'display_url': 'pic.twitter.com/V305EfjQLZ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1400198463955083268/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1400197493225369600,
     'id_str': '1400197493225369600',
     'indices': [71, 94],
     'media_url': 'http://pbs.twimg.com/media/E26AY4AXEAURDAg.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E26AY4AXEAURDAg.jpg',
     'url': 'https://t.co/V305EfjQLZ',
     'display_url': 'pic.twitter.com/V305EfjQLZ',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1400198463955083268/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 12429,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400197493225369600/vid/320x320/2jM-MVjQtT3e591p.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400197493225369600/vid/720x720/KbdpEpmnyBd0oBBd.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1400197493225369600/pl/SMmcP3CSQNx5Wdgu.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1400197493225369600/vid/540x540/F7UAywlvo1rapEY2.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1766,
  'favorite_count': 12698,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 02 21:05:47 +0000 2021',
  'id': 1400196973542653952,
  'id_str': '1400196973542653952',
  'full_text': 'RT @POTUS: Today, we are announcing a month-long effort to get 70% of adult Americans vaccinated. It will take everyone doing their part so…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Jun 02 17:52:00 +0000 2021',
   'id': 1400148204927262720,
   'id_str': '1400148204927262720',
   'full_text': 'Today, we are announcing a month-long effort to get 70% of adult Americans vaccinated. It will take everyone doing their part so we can declare our independence from COVID-19 and free ourselves from the grip it has held over our lives.',
   'truncated': False,
   'display_text_range': [0, 235],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6127,
   'favorite_count': 49098,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6127,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Jun 02 17:41:49 +0000 2021',
  'id': 1400145643881091072,
  'id_str': '1400145643881091072',
  'full_text': 'Congratulations to Congresswoman-elect @MelanieforNM on your victory last night. Your grit and determination will help deliver real results for all New Mexicans. #NM01 is in good hands.',
  'truncated': False,
  'display_text_range': [0, 185],
  'entities': {'hashtags': [{'text': 'NM01', 'indices': [162, 167]}],
   'symbols': [],
   'user_mentions': [{'screen_name': 'MelanieforNM',
     'name': 'Melanie Stansbury',
     'id': 961359779003121665,
     'id_str': '961359779003121665',
     'indices': [39, 52]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2191,
  'favorite_count': 19903,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Jun 01 14:28:40 +0000 2021',
  'id': 1399734647463071745,
  'id_str': '1399734647463071745',
  'full_text': 'RT @POTUS: 100 years ago, the thriving Black community of Greenwood in Tulsa, Oklahoma was ruthlessly attacked by a white supremacist mob—a…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Jun 01 13:31:40 +0000 2021',
   'id': 1399720301731237893,
   'id_str': '1399720301731237893',
   'full_text': '100 years ago, the thriving Black community of Greenwood in Tulsa, Oklahoma was ruthlessly attacked by a white supremacist mob—as many as 300 Black Americans were killed and 10,000 were left homeless. Today, I’m visiting the Greenwood Cultural Center and meeting with survivors.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11684,
   'favorite_count': 84111,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11684,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 31 19:14:38 +0000 2021',
  'id': 1399444224102305792,
  'id_str': '1399444224102305792',
  'full_text': 'RT @POTUS: On Memorial Day, we honor and reflect upon the courage, integrity, and selfless dedication of the members of our Armed Forces wh…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon May 31 19:10:52 +0000 2021',
   'id': 1399443279746326544,
   'id_str': '1399443279746326544',
   'full_text': 'On Memorial Day, we honor and reflect upon the courage, integrity, and selfless dedication of the members of our Armed Forces who have made the greatest sacrifice in service to our nation. https://t.co/wRq9hJSxoC',
   'truncated': False,
   'display_text_range': [0, 188],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1399443277875761152,
      'id_str': '1399443277875761152',
      'indices': [189, 212],
      'media_url': 'http://pbs.twimg.com/media/E2vSPyUX0AAK43A.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E2vSPyUX0AAK43A.jpg',
      'url': 'https://t.co/wRq9hJSxoC',
      'display_url': 'pic.twitter.com/wRq9hJSxoC',
      'expanded_url': 'https://twitter.com/POTUS/status/1399443279746326544/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 684, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 684, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1399443277875761152,
      'id_str': '1399443277875761152',
      'indices': [189, 212],
      'media_url': 'http://pbs.twimg.com/media/E2vSPyUX0AAK43A.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E2vSPyUX0AAK43A.jpg',
      'url': 'https://t.co/wRq9hJSxoC',
      'display_url': 'pic.twitter.com/wRq9hJSxoC',
      'expanded_url': 'https://twitter.com/POTUS/status/1399443279746326544/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 684, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 684, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8618,
   'favorite_count': 79680,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8618,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 31 14:22:11 +0000 2021',
  'id': 1399370630039052292,
  'id_str': '1399370630039052292',
  'full_text': 'RT @POTUS: Tune in as we honor our fallen heroes at the 153rd National Memorial Day Observance. https://t.co/p9DJ1LparL',
  'truncated': False,
  'display_text_range': [0, 119],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/p9DJ1LparL',
     'expanded_url': 'https://twitter.com/i/broadcasts/1jMKgpQDgYqGL',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [96, 119]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon May 31 14:06:09 +0000 2021',
   'id': 1399366593952550924,
   'id_str': '1399366593952550924',
   'full_text': 'Tune in as we honor our fallen heroes at the 153rd National Memorial Day Observance. https://t.co/p9DJ1LparL',
   'truncated': False,
   'display_text_range': [0, 108],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/p9DJ1LparL',
      'expanded_url': 'https://twitter.com/i/broadcasts/1jMKgpQDgYqGL',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [85, 108]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3163,
   'favorite_count': 20565,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3163,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat May 29 15:31:17 +0000 2021',
  'id': 1398663242675806212,
  'id_str': '1398663242675806212',
  'full_text': 'Grassroots supporters made it possible for us to pass the American Rescue Plan and start getting our country back on track—but our work is far from over. Please consider chipping in to support Democrats running for office in 2021, 2022, and beyond.\nhttps://t.co/XfbPPFvKr8',
  'truncated': False,
  'display_text_range': [0, 272],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/XfbPPFvKr8',
     'expanded_url': 'https://secure.actblue.com/donate/democratic-fight-fund-may-deadline-2021?refcode=tw_20210529_jb',
     'display_url': 'secure.actblue.com/donate/democra…',
     'indices': [249, 272]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1254,
  'favorite_count': 8350,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri May 28 21:06:12 +0000 2021',
  'id': 1398385137402843137,
  'id_str': '1398385137402843137',
  'full_text': "Before we took office, the economy added back 60,000 jobs per month. It’s now adding back 500,000 jobs per month.\n\nIn fact, we've created 1.5 million jobs—more jobs than have ever been created in the first three months of any president in our nation's history.",
  'truncated': False,
  'display_text_range': [0, 260],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7079,
  'favorite_count': 63670,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri May 28 17:50:56 +0000 2021',
  'id': 1398335999349035012,
  'id_str': '1398335999349035012',
  'full_text': "To put it simply, America's coming back. https://t.co/SYN7NZkH91",
  'truncated': False,
  'display_text_range': [0, 40],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1398293449321877506,
     'id_str': '1398293449321877506',
     'indices': [41, 64],
     'media_url': 'http://pbs.twimg.com/media/E2e9p98XwAErvTo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E2e9p98XwAErvTo.jpg',
     'url': 'https://t.co/SYN7NZkH91',
     'display_url': 'pic.twitter.com/SYN7NZkH91',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1398335999349035012/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1398293449321877506,
     'id_str': '1398293449321877506',
     'indices': [41, 64],
     'media_url': 'http://pbs.twimg.com/media/E2e9p98XwAErvTo.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E2e9p98XwAErvTo.jpg',
     'url': 'https://t.co/SYN7NZkH91',
     'display_url': 'pic.twitter.com/SYN7NZkH91',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1398335999349035012/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 21104,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1398293449321877506/vid/540x540/QmXW3KhqySHslyaE.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1398293449321877506/pl/XnOFRx5JA4kEF2rg.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1398293449321877506/vid/320x320/PiF6IcEHEeHIIPVt.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1398293449321877506/vid/720x720/ZIY_vd4BJ6YmWYNk.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1760,
  'favorite_count': 16983,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri May 28 15:00:46 +0000 2021',
  'id': 1398293173349277704,
  'id_str': '1398293173349277704',
  'full_text': 'RT @POTUS: America is on the move again. We’ve turned the tide on a once-in-a-century pandemic and a once-in-a-generation economic crisis.…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri May 28 13:38:35 +0000 2021',
   'id': 1398272493933236227,
   'id_str': '1398272493933236227',
   'full_text': 'America is on the move again. We’ve turned the tide on a once-in-a-century pandemic and a once-in-a-generation economic crisis. https://t.co/g8vTzJPTcP',
   'truncated': False,
   'display_text_range': [0, 127],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1398272491693424648,
      'id_str': '1398272491693424648',
      'indices': [128, 151],
      'media_url': 'http://pbs.twimg.com/media/E2epbD6WQAgfjA3.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E2epbD6WQAgfjA3.jpg',
      'url': 'https://t.co/g8vTzJPTcP',
      'display_url': 'pic.twitter.com/g8vTzJPTcP',
      'expanded_url': 'https://twitter.com/POTUS/status/1398272493933236227/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1398272491693424648,
      'id_str': '1398272491693424648',
      'indices': [128, 151],
      'media_url': 'http://pbs.twimg.com/media/E2epbD6WQAgfjA3.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E2epbD6WQAgfjA3.jpg',
      'url': 'https://t.co/g8vTzJPTcP',
      'display_url': 'pic.twitter.com/g8vTzJPTcP',
      'expanded_url': 'https://twitter.com/POTUS/status/1398272493933236227/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2408,
   'favorite_count': 15640,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2408,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri May 28 01:07:55 +0000 2021',
  'id': 1398083579075350528,
  'id_str': '1398083579075350528',
  'full_text': 'This is our moment to rebuild an economy from the bottom up and the middle out—not trickle down.\n\nThis is our moment to rebuild an economy that rewards work, not just wealth.\n\nThis is our moment to rebuild an economy that works for the backbone of this country.',
  'truncated': False,
  'display_text_range': [0, 261],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4850,
  'favorite_count': 42927,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 27 22:14:02 +0000 2021',
  'id': 1398039819947741185,
  'id_str': '1398039819947741185',
  'full_text': 'The Biden economic plan is working. https://t.co/boXNRUWEvi',
  'truncated': False,
  'display_text_range': [0, 35],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1398038974036426753,
     'id_str': '1398038974036426753',
     'indices': [36, 59],
     'media_url': 'http://pbs.twimg.com/media/E2bVjjIWEAE4Qjc.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E2bVjjIWEAE4Qjc.jpg',
     'url': 'https://t.co/boXNRUWEvi',
     'display_url': 'pic.twitter.com/boXNRUWEvi',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1398039819947741185/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1398038974036426753,
     'id_str': '1398038974036426753',
     'indices': [36, 59],
     'media_url': 'http://pbs.twimg.com/media/E2bVjjIWEAE4Qjc.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E2bVjjIWEAE4Qjc.jpg',
     'url': 'https://t.co/boXNRUWEvi',
     'display_url': 'pic.twitter.com/boXNRUWEvi',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1398039819947741185/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 9301,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1398038974036426753/pl/Tlhla4KtqdDMgN82.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1398038974036426753/vid/540x540/7IBTo6couT7I6FgT.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1398038974036426753/vid/320x320/ftStnWrBU0hJPiSm.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1398038974036426753/vid/720x720/tb5Sus4cl0WvjQrc.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1797,
  'favorite_count': 15816,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu May 27 18:20:08 +0000 2021',
  'id': 1397980959723696137,
  'id_str': '1397980959723696137',
  'full_text': 'RT @POTUS: Tune in as I deliver remarks on our economic progress and share my vision for the future. https://t.co/h5ULW6rjJ7',
  'truncated': False,
  'display_text_range': [0, 124],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/h5ULW6rjJ7',
     'expanded_url': 'https://twitter.com/i/broadcasts/1lDxLpoBzALxm',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [101, 124]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu May 27 18:19:58 +0000 2021',
   'id': 1397980915977031685,
   'id_str': '1397980915977031685',
   'full_text': 'Tune in as I deliver remarks on our economic progress and share my vision for the future. https://t.co/h5ULW6rjJ7',
   'truncated': False,
   'display_text_range': [0, 113],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/h5ULW6rjJ7',
      'expanded_url': 'https://twitter.com/i/broadcasts/1lDxLpoBzALxm',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [90, 113]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1101,
   'favorite_count': 6620,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1101,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed May 26 23:22:52 +0000 2021',
  'id': 1397694754528313350,
  'id_str': '1397694754528313350',
  'full_text': 'RT @POTUS: We are still awaiting many of the details of this latest mass shooting in San Jose, but there are some things we know for sure.…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed May 26 21:51:15 +0000 2021',
   'id': 1397671698581934084,
   'id_str': '1397671698581934084',
   'full_text': 'We are still awaiting many of the details of this latest mass shooting in San Jose, but there are some things we know for sure. There are at least eight families who will never be whole again. Every life taken by a bullet pierces the soul of our nation. \n \nWe must do more.',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7388,
   'favorite_count': 56924,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7388,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed May 26 20:48:08 +0000 2021',
  'id': 1397655816426119173,
  'id_str': '1397655816426119173',
  'full_text': 'Enjoyed meeting with Maria and Dreamers this month. Dreamers are Americans, and we are fighting for them. https://t.co/3Hfa0xNnFN',
  'truncated': False,
  'display_text_range': [0, 105],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1397650244343631877,
     'id_str': '1397650244343631877',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/E2V4KPxXoAQkhL7.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E2V4KPxXoAQkhL7.jpg',
     'url': 'https://t.co/3Hfa0xNnFN',
     'display_url': 'pic.twitter.com/3Hfa0xNnFN',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1397655816426119173/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1397650244343631877,
     'id_str': '1397650244343631877',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/E2V4KPxXoAQkhL7.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E2V4KPxXoAQkhL7.jpg',
     'url': 'https://t.co/3Hfa0xNnFN',
     'display_url': 'pic.twitter.com/3Hfa0xNnFN',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1397655816426119173/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 57500,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1397650244343631877/pl/LzIU2SHNjLPkSofx.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1397650244343631877/vid/320x320/ZuqCvPuPIVw-OHd3.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1397650244343631877/vid/720x720/n9LXeta9UIagRGmK.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1397650244343631877/vid/540x540/0O2EVoUPltFvpkKc.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1370,
  'favorite_count': 10953,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue May 25 21:05:32 +0000 2021',
  'id': 1397297809410433027,
  'id_str': '1397297809410433027',
  'full_text': 'Across the country, we have failed to properly invest in infrastructure for half a century. The American Jobs Plan will get millions of Americans good-paying union jobs repairing our country’s crumbling infrastructure.\n\nIt’s a blue-collar blueprint to rebuild America.',
  'truncated': False,
  'display_text_range': [0, 268],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4505,
  'favorite_count': 38664,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 25 17:52:15 +0000 2021',
  'id': 1397249167286841347,
  'id_str': '1397249167286841347',
  'full_text': 'RT @POTUS: It’s been one year since George Floyd was murdered. In that time, George’s family has shown extraordinary courage. Last month’s…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue May 25 17:07:28 +0000 2021',
   'id': 1397237895140888582,
   'id_str': '1397237895140888582',
   'full_text': 'It’s been one year since George Floyd was murdered. In that time, George’s family has shown extraordinary courage. Last month’s conviction was a step towards justice – but we cannot stop there. \n\nWe face an inflection point. We have to act.',
   'truncated': False,
   'display_text_range': [0, 240],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5019,
   'favorite_count': 36890,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5019,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 24 21:18:35 +0000 2021',
  'id': 1396938703109492741,
  'id_str': '1396938703109492741',
  'full_text': 'After meeting with experts and scientists, our administration has set an ambitious goal of having 70% of the U.S. adult population receive at least one dose of vaccine by July 4. \n\nIt’s a big goal, but we are already doing a remarkable job—together, we’ll get through this.',
  'truncated': False,
  'display_text_range': [0, 273],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3956,
  'favorite_count': 37213,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 24 17:52:39 +0000 2021',
  'id': 1396886878045970434,
  'id_str': '1396886878045970434',
  'full_text': 'The American Rescue Plan is helping get us out of this crisis and back on track—but we can’t stop now. \n\nWe must pass the American Jobs Plan to deliver millions of good-paying jobs.',
  'truncated': False,
  'display_text_range': [0, 181],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4131,
  'favorite_count': 35311,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 24 15:22:29 +0000 2021',
  'id': 1396849087845179394,
  'id_str': '1396849087845179394',
  'full_text': 'RT @POTUS: The recent attacks on the Jewish community are despicable, and they must stop. I condemn this hateful behavior at home and abroa…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon May 24 12:09:29 +0000 2021',
   'id': 1396800517091827713,
   'id_str': '1396800517091827713',
   'full_text': 'The recent attacks on the Jewish community are despicable, and they must stop. I condemn this hateful behavior at home and abroad — it’s up to all of us to give hate no safe harbor.',
   'truncated': False,
   'display_text_range': [0, 181],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10164,
   'favorite_count': 74294,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10164,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun May 23 21:29:30 +0000 2021',
  'id': 1396579064777953285,
  'id_str': '1396579064777953285',
  'full_text': 'More than 20,000 pharmacies coast to coast are now offering walk-in vaccinations with no appointment necessary. Find a location near you at https://t.co/EwdQ2dFHwG.',
  'truncated': False,
  'display_text_range': [0, 164],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/EwdQ2dFHwG',
     'expanded_url': 'http://vaccines.gov',
     'display_url': 'vaccines.gov',
     'indices': [140, 163]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6746,
  'favorite_count': 42909,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun May 23 18:51:19 +0000 2021',
  'id': 1396539256298954756,
  'id_str': '1396539256298954756',
  'full_text': 'RT @POTUS: Since we took office, hunger rates have dropped 43% among adults. They’re at their lowest rates since the start of the pandemic.…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun May 23 17:30:00 +0000 2021',
   'id': 1396518791203463175,
   'id_str': '1396518791203463175',
   'full_text': 'Since we took office, hunger rates have dropped 43% among adults. They’re at their lowest rates since the start of the pandemic.\n\nThat’s the American Rescue Plan at work.',
   'truncated': False,
   'display_text_range': [0, 170],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8479,
   'favorite_count': 71949,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8479,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat May 22 16:25:12 +0000 2021',
  'id': 1396140096269824008,
  'id_str': '1396140096269824008',
  'full_text': 'The American Families Plan is a once-in-a-generation investment in the foundations of middle-class prosperity: education, health care, and child care.',
  'truncated': False,
  'display_text_range': [0, 150],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3300,
  'favorite_count': 30105,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri May 21 16:02:53 +0000 2021',
  'id': 1395772093422317579,
  'id_str': '1395772093422317579',
  'full_text': 'Folks, let’s beat this virus once and for all. \n🔍 Visit https://t.co/EwdQ2dFHwG\n💬 Text your ZIP code to 438829\n📞 Call 1 (800) 232-0233\n\nTogether, #WeCanDoThis.',
  'truncated': False,
  'display_text_range': [0, 159],
  'entities': {'hashtags': [{'text': 'WeCanDoThis', 'indices': [146, 158]}],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/EwdQ2dFHwG',
     'expanded_url': 'http://vaccines.gov',
     'display_url': 'vaccines.gov',
     'indices': [56, 79]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2541,
  'favorite_count': 14831,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu May 20 21:58:26 +0000 2021',
  'id': 1395499181226266625,
  'id_str': '1395499181226266625',
  'full_text': 'There are millions of Americans who, through no fault of their own, have been knocked flat on their back this past year. We’re determined to give them a fighting chance. That’s why we’ve been focused on vaccinating the nation and getting our economy running again.',
  'truncated': False,
  'display_text_range': [0, 264],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3720,
  'favorite_count': 40140,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 20 20:01:23 +0000 2021',
  'id': 1395469725493342210,
  'id_str': '1395469725493342210',
  'full_text': 'RT @POTUS: Incidents of hate against Asian Americans have seen a shocking spike over the last year. It’s wrong — and it’s un-American.\n \nTo…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu May 20 18:41:36 +0000 2021',
   'id': 1395449644348489735,
   'id_str': '1395449644348489735',
   'full_text': 'Incidents of hate against Asian Americans have seen a shocking spike over the last year. It’s wrong — and it’s un-American.\n \nTo all those who are hurting: we see you and we are committed to stopping the hatred and bias.',
   'truncated': False,
   'display_text_range': [0, 220],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4744,
   'favorite_count': 35474,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4744,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 20 01:04:49 +0000 2021',
  'id': 1395183696769077248,
  'id_str': '1395183696769077248',
  'full_text': 'Our country is moving in the right direction, but there’s still work to do to dig our way out of an economic collapse.\n\nWe must pass the American Jobs Plan to create millions of good-paying jobs rebuilding our country’s infrastructure.',
  'truncated': False,
  'display_text_range': [0, 235],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3795,
  'favorite_count': 36599,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed May 19 21:13:52 +0000 2021',
  'id': 1395125579284983810,
  'id_str': '1395125579284983810',
  'full_text': 'We’re counting on you to roll up your sleeve, get vaccinated, and work together to change the course of this pandemic. \n\nGo to https://t.co/EwdQ2dFHwG to find the nearest place you can get a COVID-19 vaccine.',
  'truncated': False,
  'display_text_range': [0, 208],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/EwdQ2dFHwG',
     'expanded_url': 'http://vaccines.gov',
     'display_url': 'vaccines.gov',
     'indices': [127, 150]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1591,
  'favorite_count': 12853,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue May 18 23:10:29 +0000 2021',
  'id': 1394792535923507200,
  'id_str': '1394792535923507200',
  'full_text': 'Text your ZIP code to 438829 to find COVID-19 vaccination locations near you.',
  'truncated': False,
  'display_text_range': [0, 77],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6775,
  'favorite_count': 36531,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 18 22:03:24 +0000 2021',
  'id': 1394775653162098691,
  'id_str': '1394775653162098691',
  'full_text': 'RT @POTUS: Being at Ford’s Rouge Electric Vehicle Center today brought me home. For more than thirty years, my Dad managed car dealerships…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue May 18 22:00:01 +0000 2021',
   'id': 1394774805107326976,
   'id_str': '1394774805107326976',
   'full_text': 'Being at Ford’s Rouge Electric Vehicle Center today brought me home. For more than thirty years, my Dad managed car dealerships in Delaware. He would’ve loved visiting this complex, where you feel the history and see the future of an iconic American industry. https://t.co/w6fnqSoK55',
   'truncated': False,
   'display_text_range': [0, 259],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1394774803165417474,
      'id_str': '1394774803165417474',
      'indices': [260, 283],
      'media_url': 'http://pbs.twimg.com/media/E1s8SyxXEAIuGli.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E1s8SyxXEAIuGli.jpg',
      'url': 'https://t.co/w6fnqSoK55',
      'display_url': 'pic.twitter.com/w6fnqSoK55',
      'expanded_url': 'https://twitter.com/POTUS/status/1394774805107326976/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 684, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 684, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1394774803165417474,
      'id_str': '1394774803165417474',
      'indices': [260, 283],
      'media_url': 'http://pbs.twimg.com/media/E1s8SyxXEAIuGli.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E1s8SyxXEAIuGli.jpg',
      'url': 'https://t.co/w6fnqSoK55',
      'display_url': 'pic.twitter.com/w6fnqSoK55',
      'expanded_url': 'https://twitter.com/POTUS/status/1394774805107326976/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 684, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 684, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2374,
   'favorite_count': 19689,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2374,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 18 15:21:39 +0000 2021',
  'id': 1394674549703286791,
  'id_str': '1394674549703286791',
  'full_text': 'Help spread the word: From May 24 until July 4, Uber and Lyft will offer everyone in America free rides to and from COVID-19 vaccination sites.',
  'truncated': False,
  'display_text_range': [0, 143],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 33201,
  'favorite_count': 145802,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 18 01:07:07 +0000 2021',
  'id': 1394459502011891712,
  'id_str': '1394459502011891712',
  'full_text': 'In the battle against the COVID-19 pandemic, our nation is going to be the arsenal of vaccines for the rest of the world. https://t.co/LwU7Olic2V',
  'truncated': False,
  'display_text_range': [0, 121],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1394458414294634497,
     'id_str': '1394458414294634497',
     'indices': [122, 145],
     'media_url': 'http://pbs.twimg.com/media/E1odQq3XoAEdux5.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E1odQq3XoAEdux5.jpg',
     'url': 'https://t.co/LwU7Olic2V',
     'display_url': 'pic.twitter.com/LwU7Olic2V',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1394459502011891712/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1394458414294634497,
     'id_str': '1394458414294634497',
     'indices': [122, 145],
     'media_url': 'http://pbs.twimg.com/media/E1odQq3XoAEdux5.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E1odQq3XoAEdux5.jpg',
     'url': 'https://t.co/LwU7Olic2V',
     'display_url': 'pic.twitter.com/LwU7Olic2V',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1394459502011891712/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 18018,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1394458414294634497/vid/540x540/5UfaEI3u8W7xmV-k.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1394458414294634497/pl/IP8tOsTBhpLvwb8O.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1394458414294634497/vid/320x320/Qq3Qhf7O1AluPm3Z.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1394458414294634497/vid/720x720/bEOpU20PaKHYbAqM.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2132,
  'favorite_count': 18829,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon May 17 22:56:11 +0000 2021',
  'id': 1394426550733443079,
  'id_str': '1394426550733443079',
  'full_text': 'The light at the end of the tunnel is growing brighter every day. https://t.co/McB4q1bqX4',
  'truncated': False,
  'display_text_range': [0, 65],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1394424150194851844,
     'id_str': '1394424150194851844',
     'indices': [66, 89],
     'media_url': 'http://pbs.twimg.com/media/E1n9uIqXsAEcMHT.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E1n9uIqXsAEcMHT.jpg',
     'url': 'https://t.co/McB4q1bqX4',
     'display_url': 'pic.twitter.com/McB4q1bqX4',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1394426550733443079/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1394424150194851844,
     'id_str': '1394424150194851844',
     'indices': [66, 89],
     'media_url': 'http://pbs.twimg.com/media/E1n9uIqXsAEcMHT.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E1n9uIqXsAEcMHT.jpg',
     'url': 'https://t.co/McB4q1bqX4',
     'display_url': 'pic.twitter.com/McB4q1bqX4',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1394426550733443079/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 8842,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1394424150194851844/pl/YI8VuZJpAPxqRFn8.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1394424150194851844/vid/720x720/ZBkwYaVxbb4mjSLg.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1394424150194851844/vid/540x540/FwV8r6TrAwYcAjqj.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1394424150194851844/vid/320x320/3z94RkmjXoCMIyRq.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1884,
  'favorite_count': 17779,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon May 17 20:56:47 +0000 2021',
  'id': 1394396502697680900,
  'id_str': '1394396502697680900',
  'full_text': 'RT @POTUS: On this International Day Against Homophobia, Transphobia, and Biphobia, the message from the United States is clear: everyone d…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon May 17 18:30:00 +0000 2021',
   'id': 1394359563646906369,
   'id_str': '1394359563646906369',
   'full_text': 'On this International Day Against Homophobia, Transphobia, and Biphobia, the message from the United States is clear: everyone deserves dignity and equality, no matter who they are or whom they love. We’re committed to advancing LGBTQ+ rights here at home and around the world.',
   'truncated': False,
   'display_text_range': [0, 277],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9558,
   'favorite_count': 62160,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9558,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat May 15 14:54:24 +0000 2021',
  'id': 1393580530021588994,
  'id_str': '1393580530021588994',
  'full_text': 'RT @POTUS: I know folks have a lot of questions about COVID-19, the vaccines, and the latest mask guidance. So, we had the nation’s top exp…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat May 15 14:02:04 +0000 2021',
   'id': 1393567360057892865,
   'id_str': '1393567360057892865',
   'full_text': 'I know folks have a lot of questions about COVID-19, the vaccines, and the latest mask guidance. So, we had the nation’s top experts break things down for this week’s conversation. Check it out: https://t.co/hkRydyEuHe',
   'truncated': False,
   'display_text_range': [0, 194],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1393567249898815494,
      'id_str': '1393567249898815494',
      'indices': [195, 218],
      'media_url': 'http://pbs.twimg.com/media/E1byIEmXoAIW-Qg.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E1byIEmXoAIW-Qg.jpg',
      'url': 'https://t.co/hkRydyEuHe',
      'display_url': 'pic.twitter.com/hkRydyEuHe',
      'expanded_url': 'https://twitter.com/POTUS/status/1393567360057892865/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1393567249898815494,
      'id_str': '1393567249898815494',
      'indices': [195, 218],
      'media_url': 'http://pbs.twimg.com/media/E1byIEmXoAIW-Qg.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E1byIEmXoAIW-Qg.jpg',
      'url': 'https://t.co/hkRydyEuHe',
      'display_url': 'pic.twitter.com/hkRydyEuHe',
      'expanded_url': 'https://twitter.com/POTUS/status/1393567360057892865/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 217877,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1393567249898815494/vid/720x720/ZlHFOfnokYg4uwSR.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1393567249898815494/vid/320x320/jUISN0jL-6zkSl8V.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1393567249898815494/vid/540x540/UDgehBPuKBwm9fal.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1393567249898815494/pl/0w--AtlAfqj7_WGd.m3u8?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3696,
   'favorite_count': 17379,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3696,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri May 14 19:44:32 +0000 2021',
  'id': 1393291157816365059,
  'id_str': '1393291157816365059',
  'full_text': 'RT @POTUS: This is our moment to build an economy that works for everyone — not just the super-wealthy and giant corporations. \n \nLet’s get…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri May 14 18:41:06 +0000 2021',
   'id': 1393275193703997452,
   'id_str': '1393275193703997452',
   'full_text': 'This is our moment to build an economy that works for everyone — not just the super-wealthy and giant corporations. \n \nLet’s get it done.',
   'truncated': False,
   'display_text_range': [0, 137],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6062,
   'favorite_count': 55084,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6062,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 13 23:05:05 +0000 2021',
  'id': 1392979240681881603,
  'id_str': '1392979240681881603',
  'full_text': 'The CDC announced that they are no longer recommending that fully vaccinated people need to wear masks. https://t.co/pFhJEtBepq',
  'truncated': False,
  'display_text_range': [0, 103],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1392978259126669313,
     'id_str': '1392978259126669313',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/E1Ta54CXEAQ80nz.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E1Ta54CXEAQ80nz.jpg',
     'url': 'https://t.co/pFhJEtBepq',
     'display_url': 'pic.twitter.com/pFhJEtBepq',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1392979240681881603/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1392978259126669313,
     'id_str': '1392978259126669313',
     'indices': [104, 127],
     'media_url': 'http://pbs.twimg.com/media/E1Ta54CXEAQ80nz.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E1Ta54CXEAQ80nz.jpg',
     'url': 'https://t.co/pFhJEtBepq',
     'display_url': 'pic.twitter.com/pFhJEtBepq',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1392979240681881603/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 20479,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1392978259126669313/pl/NYqaLeHUYcFFp10V.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1392978259126669313/vid/720x720/imPT7-lckwoLxMCb.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1392978259126669313/vid/320x320/s1TH_S4_f8eZsN44.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1392978259126669313/vid/540x540/yc7xyccNe8BL2Szz.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2595,
  'favorite_count': 17065,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu May 13 21:42:27 +0000 2021',
  'id': 1392958441807912962,
  'id_str': '1392958441807912962',
  'full_text': 'This was made possible by the extraordinary success we’ve had in vaccinating so many Americans, so quickly. https://t.co/gTwM6Tp7lF',
  'truncated': False,
  'display_text_range': [0, 107],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1392957620730933255,
     'id_str': '1392957620730933255',
     'indices': [108, 131],
     'media_url': 'http://pbs.twimg.com/media/E1TH6ApWQAA7qJI.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E1TH6ApWQAA7qJI.jpg',
     'url': 'https://t.co/gTwM6Tp7lF',
     'display_url': 'pic.twitter.com/gTwM6Tp7lF',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1392958441807912962/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1392957620730933255,
     'id_str': '1392957620730933255',
     'indices': [108, 131],
     'media_url': 'http://pbs.twimg.com/media/E1TH6ApWQAA7qJI.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E1TH6ApWQAA7qJI.jpg',
     'url': 'https://t.co/gTwM6Tp7lF',
     'display_url': 'pic.twitter.com/gTwM6Tp7lF',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1392958441807912962/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'additional_media_info': {'title': '',
      'description': '',
      'call_to_actions': {'visit_site': {'url': 'https://www.vaccines.gov/'}},
      'embeddable': False,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3057,
  'favorite_count': 23609,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu May 13 20:13:10 +0000 2021',
  'id': 1392935976125833226,
  'id_str': '1392935976125833226',
  'full_text': 'After a year of hard work and so much sacrifice, the rule is now simple: get vaccinated or wear a mask until you do.',
  'truncated': False,
  'display_text_range': [0, 116],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 16173,
  'favorite_count': 159986,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 13 20:07:50 +0000 2021',
  'id': 1392934633814253573,
  'id_str': '1392934633814253573',
  'full_text': 'Getting vaccinated is easier than ever. You can find a vaccine site near you by texting your ZIP code to 438829.',
  'truncated': False,
  'display_text_range': [0, 112],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5282,
  'favorite_count': 28676,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 13 19:59:41 +0000 2021',
  'id': 1392932580027248645,
  'id_str': '1392932580027248645',
  'full_text': 'Today is a great day for America in our long battle with COVID-19. \n\nJust a few hours ago, the CDC announced they are no longer recommending that fully vaccinated people need to wear masks.',
  'truncated': False,
  'display_text_range': [0, 189],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5753,
  'favorite_count': 53177,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 13 18:21:24 +0000 2021',
  'id': 1392907845578940419,
  'id_str': '1392907845578940419',
  'full_text': 'RT @WhiteHouse: Big news from the CDC: If you’re fully vaccinated, you do not need to wear a mask – indoors or outdoors, in most settings.…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu May 13 18:18:43 +0000 2021',
   'id': 1392907170702839808,
   'id_str': '1392907170702839808',
   'full_text': 'Big news from the CDC: If you’re fully vaccinated, you do not need to wear a mask – indoors or outdoors, in most settings.\n \nWe’ve gotten this far. Whether you choose to get vaccinated or wear a mask, please protect yourself until we get to the finish line. https://t.co/XI4yPmhWaD',
   'truncated': False,
   'display_text_range': [0, 257],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1392907169553584128,
      'id_str': '1392907169553584128',
      'indices': [258, 281],
      'media_url': 'http://pbs.twimg.com/media/E1SZsNZWEAA2meP.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E1SZsNZWEAA2meP.jpg',
      'url': 'https://t.co/XI4yPmhWaD',
      'display_url': 'pic.twitter.com/XI4yPmhWaD',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1392907170702839808/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1392907169553584128,
      'id_str': '1392907169553584128',
      'indices': [258, 281],
      'media_url': 'http://pbs.twimg.com/media/E1SZsNZWEAA2meP.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E1SZsNZWEAA2meP.jpg',
      'url': 'https://t.co/XI4yPmhWaD',
      'display_url': 'pic.twitter.com/XI4yPmhWaD',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1392907170702839808/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 1024, 'resize': 'fit'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 1024, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 21463,
   'favorite_count': 80714,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 21463,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu May 13 16:59:20 +0000 2021',
  'id': 1392887195418120192,
  'id_str': '1392887195418120192',
  'full_text': 'RT @POTUS: My Administration has mobilized a whole-of-government response to get more fuel quickly and safely to where it is needed and to…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu May 13 16:52:38 +0000 2021',
   'id': 1392885508750123013,
   'id_str': '1392885508750123013',
   'full_text': 'My Administration has mobilized a whole-of-government response to get more fuel quickly and safely to where it is needed and to limit the pain being felt by American consumers.',
   'truncated': False,
   'display_text_range': [0, 176],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2405,
   'favorite_count': 20113,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2405,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed May 12 21:18:18 +0000 2021',
  'id': 1392589979851841538,
  'id_str': '1392589979851841538',
  'full_text': 'Getting a COVID-19 vaccine has never been easier. Go to https://t.co/EwdQ2dFHwG to find a location near you.',
  'truncated': False,
  'display_text_range': [0, 108],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/EwdQ2dFHwG',
     'expanded_url': 'http://vaccines.gov',
     'display_url': 'vaccines.gov',
     'indices': [56, 79]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3371,
  'favorite_count': 26617,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed May 12 20:55:00 +0000 2021',
  'id': 1392584115619303425,
  'id_str': '1392584115619303425',
  'full_text': 'RT @POTUS: Tomorrow we will cross 250 million vaccine shots administered since we took office. \n\nIt’s a truly remarkable achievement for th…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed May 12 20:48:56 +0000 2021',
   'id': 1392582587550421000,
   'id_str': '1392582587550421000',
   'full_text': 'Tomorrow we will cross 250 million vaccine shots administered since we took office. \n\nIt’s a truly remarkable achievement for the nation.',
   'truncated': False,
   'display_text_range': [0, 137],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8540,
   'favorite_count': 91541,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8540,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 11 21:15:37 +0000 2021',
  'id': 1392226915973488642,
  'id_str': '1392226915973488642',
  'full_text': 'We’re vaccinating the nation. We’re creating hundreds of thousands of jobs. We’re delivering real results people can see and feel in their own lives.\n  \nThat’s the essence of America. That’s democracy in action.',
  'truncated': False,
  'display_text_range': [0, 211],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6066,
  'favorite_count': 67113,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 11 18:25:18 +0000 2021',
  'id': 1392184052128657414,
  'id_str': '1392184052128657414',
  'full_text': 'RT @POTUS: We’re working hard to ensure transportation is less of a barrier when it comes to getting a COVID-19 vaccine. And I’m excited to…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue May 11 17:20:29 +0000 2021',
   'id': 1392167740354580484,
   'id_str': '1392167740354580484',
   'full_text': 'We’re working hard to ensure transportation is less of a barrier when it comes to getting a COVID-19 vaccine. And I’m excited to share that starting May 24th, Uber and Lyft will offer everyone in America free rides to vaccination sites.',
   'truncated': False,
   'display_text_range': [0, 236],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7545,
   'favorite_count': 53237,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7545,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 10 16:46:27 +0000 2021',
  'id': 1391796788055711753,
  'id_str': '1391796788055711753',
  'full_text': 'The American Families Plan addresses four of the biggest challenges facing American families:\n✅Access to a good education, including universal Pre-K\n✅Quality, affordable child care\n✅Up to 12 weeks of paid family and medical leave\n✅Money directly into the pockets of families',
  'truncated': False,
  'display_text_range': [0, 274],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2408,
  'favorite_count': 19158,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun May 09 21:11:43 +0000 2021',
  'id': 1391501156183068678,
  'id_str': '1391501156183068678',
  'full_text': 'RT @POTUS: This has been an extraordinarily tough year for moms across this country. To all the moms who have carried us through this pande…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun May 09 19:52:27 +0000 2021',
   'id': 1391481209788813313,
   'id_str': '1391481209788813313',
   'full_text': 'This has been an extraordinarily tough year for moms across this country. To all the moms who have carried us through this pandemic — as frontline workers, caregivers, parents, and more — happy Mother’s Day and thank you from a grateful nation.',
   'truncated': False,
   'display_text_range': [0, 244],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10050,
   'favorite_count': 100654,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10050,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun May 09 16:00:04 +0000 2021',
  'id': 1391422726389309447,
  'id_str': '1391422726389309447',
  'full_text': 'To moms everywhere, wishing you a safe and happy Mother’s Day. \n\nShare your favorite quote from your mother below. https://t.co/6gZ1siDh5y',
  'truncated': False,
  'display_text_range': [0, 114],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1391422095838564355,
     'id_str': '1391422095838564355',
     'indices': [115, 138],
     'media_url': 'http://pbs.twimg.com/media/E09TBisWUAMcEOA.png',
     'media_url_https': 'https://pbs.twimg.com/media/E09TBisWUAMcEOA.png',
     'url': 'https://t.co/6gZ1siDh5y',
     'display_url': 'pic.twitter.com/6gZ1siDh5y',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1391422726389309447/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 2048, 'h': 1075, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 630, 'resize': 'fit'},
      'small': {'w': 680, 'h': 357, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
  'extended_entities': {'media': [{'id': 1391422095838564355,
     'id_str': '1391422095838564355',
     'indices': [115, 138],
     'media_url': 'http://pbs.twimg.com/media/E09TBisWUAMcEOA.png',
     'media_url_https': 'https://pbs.twimg.com/media/E09TBisWUAMcEOA.png',
     'url': 'https://t.co/6gZ1siDh5y',
     'display_url': 'pic.twitter.com/6gZ1siDh5y',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1391422726389309447/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 2048, 'h': 1075, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 630, 'resize': 'fit'},
      'small': {'w': 680, 'h': 357, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2609,
  'favorite_count': 28250,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat May 08 15:53:58 +0000 2021',
  'id': 1391058805509742599,
  'id_str': '1391058805509742599',
  'full_text': "Nearly 90% of the infrastructure jobs created in the American Jobs Plan don't require a college degree. It’s a blue-collar blueprint to build America.",
  'truncated': False,
  'display_text_range': [0, 150],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 7828,
  'favorite_count': 70386,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat May 08 14:25:47 +0000 2021',
  'id': 1391036614361616389,
  'id_str': '1391036614361616389',
  'full_text': 'RT @POTUS: I am proud of the people I go to work with at the White House every day — but my pride can’t hold a candle to that of their moth…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat May 08 14:00:26 +0000 2021',
   'id': 1391030233621540867,
   'id_str': '1391030233621540867',
   'full_text': 'I am proud of the people I go to work with at the White House every day — but my pride can’t hold a candle to that of their mothers. Happy Mother’s Day and thank you for raising these public servants. https://t.co/lmuTMRjmLN',
   'truncated': False,
   'display_text_range': [0, 200],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1391030143481692160,
      'id_str': '1391030143481692160',
      'indices': [201, 224],
      'media_url': 'http://pbs.twimg.com/media/E03un57X0AES08u.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E03un57X0AES08u.jpg',
      'url': 'https://t.co/lmuTMRjmLN',
      'display_url': 'pic.twitter.com/lmuTMRjmLN',
      'expanded_url': 'https://twitter.com/POTUS/status/1391030233621540867/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1391030143481692160,
      'id_str': '1391030143481692160',
      'indices': [201, 224],
      'media_url': 'http://pbs.twimg.com/media/E03un57X0AES08u.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E03un57X0AES08u.jpg',
      'url': 'https://t.co/lmuTMRjmLN',
      'display_url': 'pic.twitter.com/lmuTMRjmLN',
      'expanded_url': 'https://twitter.com/POTUS/status/1391030233621540867/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 175851,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1391030143481692160/vid/720x720/qtPGVk1yPd9Dy90X.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1391030143481692160/pl/GBdasGtOWMbsD8GR.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1391030143481692160/vid/540x540/H0l5aJRxH5BqtJXw.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1391030143481692160/vid/320x320/qZi9OFCjpS8K5mxM.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4158,
   'favorite_count': 29268,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4158,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri May 07 20:19:31 +0000 2021',
  'id': 1390763244713922561,
  'id_str': '1390763244713922561',
  'full_text': 'Since the beginning of our administration, the economy has added more than 1.5 million jobs. \n\nWe’ve still got work to do, but America is moving in the right direction. https://t.co/B0bNPXNSKe',
  'truncated': False,
  'display_text_range': [0, 168],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1390760906523619334,
     'id_str': '1390760906523619334',
     'indices': [169, 192],
     'media_url': 'http://pbs.twimg.com/media/E0z5rQjXMAYFuBg.png',
     'media_url_https': 'https://pbs.twimg.com/media/E0z5rQjXMAYFuBg.png',
     'url': 'https://t.co/B0bNPXNSKe',
     'display_url': 'pic.twitter.com/B0bNPXNSKe',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1390763244713922561/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 2048, 'h': 1075, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 630, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 357, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1390760906523619334,
     'id_str': '1390760906523619334',
     'indices': [169, 192],
     'media_url': 'http://pbs.twimg.com/media/E0z5rQjXMAYFuBg.png',
     'media_url_https': 'https://pbs.twimg.com/media/E0z5rQjXMAYFuBg.png',
     'url': 'https://t.co/B0bNPXNSKe',
     'display_url': 'pic.twitter.com/B0bNPXNSKe',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1390763244713922561/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 2048, 'h': 1075, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 630, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 357, 'resize': 'fit'}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1956,
  'favorite_count': 14690,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri May 07 16:00:22 +0000 2021',
  'id': 1390698029376843789,
  'id_str': '1390698029376843789',
  'full_text': 'RT @POTUS: Tune in as I discuss the April jobs report. https://t.co/BUZiB5w1gj',
  'truncated': False,
  'display_text_range': [0, 78],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/BUZiB5w1gj',
     'expanded_url': 'https://twitter.com/i/broadcasts/1ypKdgvLzgdxW',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [55, 78]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri May 07 15:59:30 +0000 2021',
   'id': 1390697810958422025,
   'id_str': '1390697810958422025',
   'full_text': 'Tune in as I discuss the April jobs report. https://t.co/BUZiB5w1gj',
   'truncated': False,
   'display_text_range': [0, 67],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/BUZiB5w1gj',
      'expanded_url': 'https://twitter.com/i/broadcasts/1ypKdgvLzgdxW',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [44, 67]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1078,
   'favorite_count': 7649,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1078,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu May 06 16:37:45 +0000 2021',
  'id': 1390345049716805632,
  'id_str': '1390345049716805632',
  'full_text': 'RT @WhiteHouse: This week we launched the Restaurant Revitalization Fund to provide direct relief to restaurants and other hard-hit food es…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu May 06 14:39:38 +0000 2021',
   'id': 1390315324633923586,
   'id_str': '1390315324633923586',
   'full_text': 'This week we launched the Restaurant Revitalization Fund to provide direct relief to restaurants and other hard-hit food establishments — bars, bakeries, food stands, food trucks, caterers. Visit https://t.co/9A2zcpAaij to learn more about the program and how to apply. https://t.co/CuO4mHOVrr',
   'truncated': False,
   'display_text_range': [0, 269],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/9A2zcpAaij',
      'expanded_url': 'http://sba.gov/restaurants',
      'display_url': 'sba.gov/restaurants',
      'indices': [196, 219]}],
    'media': [{'id': 1390315322968875012,
      'id_str': '1390315322968875012',
      'indices': [270, 293],
      'media_url': 'http://pbs.twimg.com/media/E0tka4dXoAQ0p-n.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E0tka4dXoAQ0p-n.jpg',
      'url': 'https://t.co/CuO4mHOVrr',
      'display_url': 'pic.twitter.com/CuO4mHOVrr',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1390315324633923586/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1390315322968875012,
      'id_str': '1390315322968875012',
      'indices': [270, 293],
      'media_url': 'http://pbs.twimg.com/media/E0tka4dXoAQ0p-n.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E0tka4dXoAQ0p-n.jpg',
      'url': 'https://t.co/CuO4mHOVrr',
      'display_url': 'pic.twitter.com/CuO4mHOVrr',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1390315324633923586/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1596,
   'favorite_count': 9657,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1596,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed May 05 18:52:15 +0000 2021',
  'id': 1390016508559077380,
  'id_str': '1390016508559077380',
  'full_text': 'RT @POTUS: If we want our economy to recover in a way that deals everyone in, then our restaurants need a seat at the table — with the Amer…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed May 05 18:50:36 +0000 2021',
   'id': 1390016092425408516,
   'id_str': '1390016092425408516',
   'full_text': 'If we want our economy to recover in a way that deals everyone in, then our restaurants need a seat at the table — with the American Rescue Plan, they have it. \n \nThanks to our new Restaurant Revitalization Fund, we’ll be able to help about 100,000 restaurants.',
   'truncated': False,
   'display_text_range': [0, 261],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4069,
   'favorite_count': 31265,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4069,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue May 04 19:02:17 +0000 2021',
  'id': 1389656643852451847,
  'id_str': '1389656643852451847',
  'full_text': 'RT @POTUS: Our goal by July 4th is to have 70% of adult Americans with at least one shot — and 160 million Americans fully vaccinated. It’s…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue May 04 18:50:57 +0000 2021',
   'id': 1389653794158522371,
   'id_str': '1389653794158522371',
   'full_text': 'Our goal by July 4th is to have 70% of adult Americans with at least one shot — and 160 million Americans fully vaccinated. It’s another huge goal, and a serious step toward a return to normal.\n\nGet vaccinated, keep following CDC guidance. We can do this.',
   'truncated': False,
   'display_text_range': [0, 255],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8136,
   'favorite_count': 67555,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8136,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon May 03 21:19:52 +0000 2021',
  'id': 1389328881652572166,
  'id_str': '1389328881652572166',
  'full_text': 'Georgia, when you sent @Ossoff and @ReverendWarnock to the Senate, you made history. Thank you. https://t.co/47KY4Tm9hv',
  'truncated': False,
  'display_text_range': [0, 95],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'ossoff',
     'name': 'Jon Ossoff',
     'id': 521747968,
     'id_str': '521747968',
     'indices': [23, 30]},
    {'screen_name': 'ReverendWarnock',
     'name': 'Reverend Raphael Warnock',
     'id': 1221242033530195970,
     'id_str': '1221242033530195970',
     'indices': [35, 51]}],
   'urls': [],
   'media': [{'id': 1389328485789863944,
     'id_str': '1389328485789863944',
     'indices': [96, 119],
     'media_url': 'http://pbs.twimg.com/media/E0fi5ZfWEAggx1o.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0fi5ZfWEAggx1o.jpg',
     'url': 'https://t.co/47KY4Tm9hv',
     'display_url': 'pic.twitter.com/47KY4Tm9hv',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1389328881652572166/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 2048, 'h': 1152, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1389328485789863944,
     'id_str': '1389328485789863944',
     'indices': [96, 119],
     'media_url': 'http://pbs.twimg.com/media/E0fi5ZfWEAggx1o.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0fi5ZfWEAggx1o.jpg',
     'url': 'https://t.co/47KY4Tm9hv',
     'display_url': 'pic.twitter.com/47KY4Tm9hv',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1389328881652572166/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 2048, 'h': 1152, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4567,
  'favorite_count': 54371,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon May 03 13:36:50 +0000 2021',
  'id': 1389212356736126976,
  'id_str': '1389212356736126976',
  'full_text': 'RT @POTUS: Teachers are an extraordinary force for good in our nation — I’m lucky enough to be married to one and have seen firsthand how h…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon May 03 13:31:21 +0000 2021',
   'id': 1389210974926909452,
   'id_str': '1389210974926909452',
   'full_text': 'Teachers are an extraordinary force for good in our nation — I’m lucky enough to be married to one and have seen firsthand how hard they work for their students. This year teachers have gone above and beyond to help children learn through the pandemic. So please, thank a teacher. https://t.co/NbzPJ1S7H1',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1389210973341470728,
      'id_str': '1389210973341470728',
      'indices': [281, 304],
      'media_url': 'http://pbs.twimg.com/media/E0d4BRgX0AgmGnU.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E0d4BRgX0AgmGnU.jpg',
      'url': 'https://t.co/NbzPJ1S7H1',
      'display_url': 'pic.twitter.com/NbzPJ1S7H1',
      'expanded_url': 'https://twitter.com/POTUS/status/1389210974926909452/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1389210973341470728,
      'id_str': '1389210973341470728',
      'indices': [281, 304],
      'media_url': 'http://pbs.twimg.com/media/E0d4BRgX0AgmGnU.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E0d4BRgX0AgmGnU.jpg',
      'url': 'https://t.co/NbzPJ1S7H1',
      'display_url': 'pic.twitter.com/NbzPJ1S7H1',
      'expanded_url': 'https://twitter.com/POTUS/status/1389210974926909452/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6773,
   'favorite_count': 49448,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6773,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun May 02 20:42:27 +0000 2021',
  'id': 1388957075703803906,
  'id_str': '1388957075703803906',
  'full_text': 'America is on the move again. \n\nWe are choosing hope over fear. \nTruth over lies. \nLight over darkness. \n\nThere’s nothing we cannot do if we do it together.',
  'truncated': False,
  'display_text_range': [0, 156],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9758,
  'favorite_count': 97355,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat May 01 19:50:21 +0000 2021',
  'id': 1388581577714720772,
  'id_str': '1388581577714720772',
  'full_text': 'Democracy can deliver for the American people. https://t.co/UZ4BDIVoPf',
  'truncated': False,
  'display_text_range': [0, 46],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1388573416219987971,
     'id_str': '1388573416219987971',
     'indices': [47, 70],
     'media_url': 'http://pbs.twimg.com/media/E0U17iOX0AEj_5P.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0U17iOX0AEj_5P.jpg',
     'url': 'https://t.co/UZ4BDIVoPf',
     'display_url': 'pic.twitter.com/UZ4BDIVoPf',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1388581577714720772/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1388573416219987971,
     'id_str': '1388573416219987971',
     'indices': [47, 70],
     'media_url': 'http://pbs.twimg.com/media/E0U17iOX0AEj_5P.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0U17iOX0AEj_5P.jpg',
     'url': 'https://t.co/UZ4BDIVoPf',
     'display_url': 'pic.twitter.com/UZ4BDIVoPf',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1388581577714720772/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 23982,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388573416219987971/vid/540x540/S0NQ94e8RRlZTWVB.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388573416219987971/vid/320x320/9t0W94ffSkllyNc3.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1388573416219987971/pl/f4rMQ333oBf-vdNw.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388573416219987971/vid/720x720/cG3_4OoEOcgrBT0F.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2153,
  'favorite_count': 17292,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat May 01 18:16:37 +0000 2021',
  'id': 1388557988932333574,
  'id_str': '1388557988932333574',
  'full_text': 'RT @TheDemocrats: Elections make a difference. Thank you, Georgia. https://t.co/hKn1vIIr7Y',
  'truncated': False,
  'display_text_range': [0, 90],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'TheDemocrats',
     'name': 'The Democrats',
     'id': 14377605,
     'id_str': '14377605',
     'indices': [3, 16]}],
   'urls': [],
   'media': [{'id': 1388541231660257285,
     'id_str': '1388541231660257285',
     'indices': [67, 90],
     'media_url': 'http://pbs.twimg.com/media/E0UeBFJXMAEpbCr.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0UeBFJXMAEpbCr.jpg',
     'url': 'https://t.co/hKn1vIIr7Y',
     'display_url': 'pic.twitter.com/hKn1vIIr7Y',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1388541311012286469/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1388541311012286469,
     'source_status_id_str': '1388541311012286469',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605'}]},
  'extended_entities': {'media': [{'id': 1388541231660257285,
     'id_str': '1388541231660257285',
     'indices': [67, 90],
     'media_url': 'http://pbs.twimg.com/media/E0UeBFJXMAEpbCr.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0UeBFJXMAEpbCr.jpg',
     'url': 'https://t.co/hKn1vIIr7Y',
     'display_url': 'pic.twitter.com/hKn1vIIr7Y',
     'expanded_url': 'https://twitter.com/TheDemocrats/status/1388541311012286469/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1388541311012286469,
     'source_status_id_str': '1388541311012286469',
     'source_user_id': 14377605,
     'source_user_id_str': '14377605',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 54555,
      'variants': [{'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388541231660257285/vid/720x720/-mjrSxJm3pTVzIsx.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1388541231660257285/pl/hB4pq2TrY2ww4Y1n.m3u8?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388541231660257285/vid/540x540/aPSOYc5aDRAM0Wmh.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388541231660257285/vid/320x320/sNJUJen6BmezTLsN.mp4?tag=14'}]},
     'additional_media_info': {'title': 'GA Drive-In Rally Recap',
      'monetizable': False,
      'source_user': {'id': 14377605,
       'id_str': '14377605',
       'name': 'The Democrats',
       'screen_name': 'TheDemocrats',
       'location': 'Washington, D.C.',
       'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
       'url': 'https://t.co/uyjMGErQPD',
       'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
           'expanded_url': 'http://democrats.org',
           'display_url': 'democrats.org',
           'indices': [0, 23]}]},
        'description': {'urls': []}},
       'protected': False,
       'followers_count': 2254664,
       'friends_count': 73,
       'listed_count': 12529,
       'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
       'favourites_count': 1234,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': True,
       'verified': True,
       'statuses_count': 37398,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': '00AEF3',
       'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
       'profile_background_tile': True,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
       'profile_link_color': '016FD0',
       'profile_sidebar_border_color': 'FFFFFF',
       'profile_sidebar_fill_color': 'EFF0F1',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': False,
       'default_profile': False,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat May 01 17:10:21 +0000 2021',
   'id': 1388541311012286469,
   'id_str': '1388541311012286469',
   'full_text': 'Elections make a difference. Thank you, Georgia. https://t.co/hKn1vIIr7Y',
   'truncated': False,
   'display_text_range': [0, 48],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1388541231660257285,
      'id_str': '1388541231660257285',
      'indices': [49, 72],
      'media_url': 'http://pbs.twimg.com/media/E0UeBFJXMAEpbCr.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E0UeBFJXMAEpbCr.jpg',
      'url': 'https://t.co/hKn1vIIr7Y',
      'display_url': 'pic.twitter.com/hKn1vIIr7Y',
      'expanded_url': 'https://twitter.com/TheDemocrats/status/1388541311012286469/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1388541231660257285,
      'id_str': '1388541231660257285',
      'indices': [49, 72],
      'media_url': 'http://pbs.twimg.com/media/E0UeBFJXMAEpbCr.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/E0UeBFJXMAEpbCr.jpg',
      'url': 'https://t.co/hKn1vIIr7Y',
      'display_url': 'pic.twitter.com/hKn1vIIr7Y',
      'expanded_url': 'https://twitter.com/TheDemocrats/status/1388541311012286469/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 54555,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1388541231660257285/vid/720x720/-mjrSxJm3pTVzIsx.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1388541231660257285/pl/hB4pq2TrY2ww4Y1n.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1388541231660257285/vid/540x540/aPSOYc5aDRAM0Wmh.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1388541231660257285/vid/320x320/sNJUJen6BmezTLsN.mp4?tag=14'}]},
      'additional_media_info': {'title': 'GA Drive-In Rally Recap',
       'monetizable': False}}]},
   'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 14377605,
    'id_str': '14377605',
    'name': 'The Democrats',
    'screen_name': 'TheDemocrats',
    'location': 'Washington, D.C.',
    'description': 'We’re fighting for a better, fairer, and brighter future for every American.',
    'url': 'https://t.co/uyjMGErQPD',
    'entities': {'url': {'urls': [{'url': 'https://t.co/uyjMGErQPD',
        'expanded_url': 'http://democrats.org',
        'display_url': 'democrats.org',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 2254664,
    'friends_count': 73,
    'listed_count': 12529,
    'created_at': 'Sun Apr 13 20:23:13 +0000 2008',
    'favourites_count': 1234,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': True,
    'verified': True,
    'statuses_count': 37398,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': '00AEF3',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': True,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1389238488231522312/JmoitcsW_normal.png',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/14377605/1625683327',
    'profile_link_color': '016FD0',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': 'EFF0F1',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': False,
    'default_profile': False,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1287,
   'favorite_count': 7378,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1287,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat May 01 17:08:31 +0000 2021',
  'id': 1388540850167287811,
  'id_str': '1388540850167287811',
  'full_text': 'RT @POTUS: This May, during Asian American and Native Hawaiian/Pacific Islander Heritage Month, we recognize the history and achievements o…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat May 01 17:00:01 +0000 2021',
   'id': 1388538713920229377,
   'id_str': '1388538713920229377',
   'full_text': 'This May, during Asian American and Native Hawaiian/Pacific Islander Heritage Month, we recognize the history and achievements of Asian Americans, Native Hawaiians, and Pacific Islanders across our nation — and recommit to the struggle for AANHPI equality.',
   'truncated': False,
   'display_text_range': [0, 256],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4251,
   'favorite_count': 30648,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4251,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat May 01 16:40:15 +0000 2021',
  'id': 1388533738934579201,
  'id_str': '1388533738934579201',
  'full_text': 'We’ve never been more optimistic about the future of America. https://t.co/EBHlCb2P84',
  'truncated': False,
  'display_text_range': [0, 61],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1388533146132566018,
     'id_str': '1388533146132566018',
     'indices': [62, 85],
     'media_url': 'http://pbs.twimg.com/media/E0UPiiYWUAIrLd_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0UPiiYWUAIrLd_.jpg',
     'url': 'https://t.co/EBHlCb2P84',
     'display_url': 'pic.twitter.com/EBHlCb2P84',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1388533738934579201/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'large': {'w': 1991, 'h': 1120, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1388533146132566018,
     'id_str': '1388533146132566018',
     'indices': [62, 85],
     'media_url': 'http://pbs.twimg.com/media/E0UPiiYWUAIrLd_.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0UPiiYWUAIrLd_.jpg',
     'url': 'https://t.co/EBHlCb2P84',
     'display_url': 'pic.twitter.com/EBHlCb2P84',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1388533738934579201/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'large': {'w': 1991, 'h': 1120, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4458,
  'favorite_count': 76203,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 30 22:41:52 +0000 2021',
  'id': 1388262351967825928,
  'id_str': '1388262351967825928',
  'full_text': 'Thank you, Georgia, for everything. https://t.co/1Ci4pFJ4os',
  'truncated': False,
  'display_text_range': [0, 35],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1388261770066862091,
     'id_str': '1388261770066862091',
     'indices': [36, 59],
     'media_url': 'http://pbs.twimg.com/media/E0QZFkzWQAEoUap.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0QZFkzWQAEoUap.jpg',
     'url': 'https://t.co/1Ci4pFJ4os',
     'display_url': 'pic.twitter.com/1Ci4pFJ4os',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1388262351967825928/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1388261770066862091,
     'id_str': '1388261770066862091',
     'indices': [36, 59],
     'media_url': 'http://pbs.twimg.com/media/E0QZFkzWQAEoUap.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/E0QZFkzWQAEoUap.jpg',
     'url': 'https://t.co/1Ci4pFJ4os',
     'display_url': 'pic.twitter.com/1Ci4pFJ4os',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1388262351967825928/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
      'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 5706,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1388261770066862091/pl/wmLoK57dI4ag4MGL.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388261770066862091/vid/320x320/GmCS6W-N3Yef16qN.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388261770066862091/vid/720x720/jFGzg0rHxTlrqW0Y.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1388261770066862091/vid/540x540/jFueWaqkO76Ih44D.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'embeddable': True,
      'monetizable': False}}]},
  'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 4226,
  'favorite_count': 68730,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 30 18:50:30 +0000 2021',
  'id': 1388204128074076161,
  'id_str': '1388204128074076161',
  'full_text': 'RT @POTUS: Join me at Philadelphia’s 30th Street Station as we celebrate Amtrak’s 50th Anniversary. https://t.co/HuPetlGvaU',
  'truncated': False,
  'display_text_range': [0, 123],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/HuPetlGvaU',
     'expanded_url': 'https://twitter.com/i/broadcasts/1RDGlPqNeMgGL',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [100, 123]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 30 18:45:45 +0000 2021',
   'id': 1388202932198416388,
   'id_str': '1388202932198416388',
   'full_text': 'Join me at Philadelphia’s 30th Street Station as we celebrate Amtrak’s 50th Anniversary. https://t.co/HuPetlGvaU',
   'truncated': False,
   'display_text_range': [0, 112],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/HuPetlGvaU',
      'expanded_url': 'https://twitter.com/i/broadcasts/1RDGlPqNeMgGL',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [89, 112]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1463,
   'favorite_count': 11342,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1463,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 29 20:07:27 +0000 2021',
  'id': 1387861106966806536,
  'id_str': '1387861106966806536',
  'full_text': 'In Georgia with @DrBiden to celebrate the successes of the first 100 days of the Biden-Harris administration. Jobs are coming back, folks are getting vaccinated, and better days are ahead. Tune in. \nhttps://t.co/v1B30kekja',
  'truncated': False,
  'display_text_range': [0, 222],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'DrBiden',
     'name': 'Dr. Jill Biden',
     'id': 821784477076750338,
     'id_str': '821784477076750338',
     'indices': [16, 24]}],
   'urls': [{'url': 'https://t.co/v1B30kekja',
     'expanded_url': 'https://twitter.com/i/broadcasts/1eaKbnOpbPjKX',
     'display_url': 'twitter.com/i/broadcasts/1…',
     'indices': [199, 222]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1069,
  'favorite_count': 7876,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 29 16:07:32 +0000 2021',
  'id': 1387800729281236997,
  'id_str': '1387800729281236997',
  'full_text': '100 days in—and America is getting back on track.',
  'truncated': False,
  'display_text_range': [0, 49],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9344,
  'favorite_count': 135471,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 29 02:14:29 +0000 2021',
  'id': 1387591082918260740,
  'id_str': '1387591082918260740',
  'full_text': 'RT @POTUS: If we are to truly restore the soul of America, then we need to protect the sacred right to vote.\n\nCongress should pass H.R. 1 a…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 29 02:07:37 +0000 2021',
   'id': 1387589355066306567,
   'id_str': '1387589355066306567',
   'full_text': 'If we are to truly restore the soul of America, then we need to protect the sacred right to vote.\n\nCongress should pass H.R. 1 and the John Lewis Voting Rights Act and send them to my desk right away.',
   'truncated': False,
   'display_text_range': [0, 200],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5941,
   'favorite_count': 37740,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5941,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 29 01:53:55 +0000 2021',
  'id': 1387585909378461702,
  'id_str': '1387585909378461702',
  'full_text': 'RT @POTUS: Trickle-down economics has never worked.\n\nIt’s time to grow the economy from the bottom up and middle out.',
  'truncated': False,
  'display_text_range': [0, 117],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 29 01:46:37 +0000 2021',
   'id': 1387584072021692420,
   'id_str': '1387584072021692420',
   'full_text': 'Trickle-down economics has never worked.\n\nIt’s time to grow the economy from the bottom up and middle out.',
   'truncated': False,
   'display_text_range': [0, 106],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 28930,
   'favorite_count': 192028,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 28930,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 29 01:20:38 +0000 2021',
  'id': 1387577532510310401,
  'id_str': '1387577532510310401',
  'full_text': 'RT @POTUS: 100 days ago, America’s house was on fire. We had to act, so we:\n\n- Passed the American Rescue Plan\n- Administered over 200 mill…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 29 01:11:07 +0000 2021',
   'id': 1387575138552537088,
   'id_str': '1387575138552537088',
   'full_text': '100 days ago, America’s house was on fire. We had to act, so we:\n\n- Passed the American Rescue Plan\n- Administered over 200 million shots\n- Sent over 160 million relief checks\n- Delivered food and rental assistance to millions\n- Provided small business loans',
   'truncated': False,
   'display_text_range': [0, 258],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3352,
   'favorite_count': 21018,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3352,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 29 01:01:41 +0000 2021',
  'id': 1387572764740145157,
  'id_str': '1387572764740145157',
  'full_text': 'Together, we’re getting back on track. Tune in now for our administration’s first joint address to Congress. https://t.co/WWjl35N2Em',
  'truncated': False,
  'display_text_range': [0, 108],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/WWjl35N2Em',
     'expanded_url': 'https://twitter.com/WhiteHouse/status/1387571335455559683',
     'display_url': 'twitter.com/WhiteHouse/sta…',
     'indices': [109, 132]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': True,
  'quoted_status_id': 1387571335455559683,
  'quoted_status_id_str': '1387571335455559683',
  'quoted_status_permalink': {'url': 'https://t.co/WWjl35N2Em',
   'expanded': 'https://twitter.com/WhiteHouse/status/1387571335455559683',
   'display': 'twitter.com/WhiteHouse/sta…'},
  'quoted_status': {'created_at': 'Thu Apr 29 00:56:00 +0000 2021',
   'id': 1387571335455559683,
   'id_str': '1387571335455559683',
   'full_text': 'LIVE: President Biden delivers his first address to a Joint Session of Congress. https://t.co/tuJTTxgdAX',
   'truncated': False,
   'display_text_range': [0, 104],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/tuJTTxgdAX',
      'expanded_url': 'https://twitter.com/i/broadcasts/1BdGYYOvqNyGX',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [81, 104]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1325,
   'favorite_count': 6771,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'retweet_count': 1022,
  'favorite_count': 8166,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 28 18:38:49 +0000 2021',
  'id': 1387476414098780165,
  'id_str': '1387476414098780165',
  'full_text': 'RT @POTUS: To make tonight’s joint address accessible for all Americans, every White House livestream will have American Sign Language (ASL…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Apr 28 15:03:49 +0000 2021',
   'id': 1387422304808878087,
   'id_str': '1387422304808878087',
   'full_text': 'To make tonight’s joint address accessible for all Americans, every White House livestream will have American Sign Language (ASL) interpretation for the first time in history. You can learn more about how to tune in here: https://t.co/0MicNU8f7S',
   'truncated': False,
   'display_text_range': [0, 245],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/0MicNU8f7S',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/blog/2021/04/27/how-to-watch-the-livestream-of-president-bidens-address-to-the-joint-session-of-congress/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [222, 245]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2730,
   'favorite_count': 16791,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2730,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 28 15:01:50 +0000 2021',
  'id': 1387421807158890507,
  'id_str': '1387421807158890507',
  'full_text': 'Before tonight’s joint address to Congress, join @DrBiden and Mayor @KeishaBottoms for a call to thank our grassroots supporters. Sign up here to join them: https://t.co/tF9AJStpL6',
  'truncated': False,
  'display_text_range': [0, 180],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'DrBiden',
     'name': 'Dr. Jill Biden',
     'id': 821784477076750338,
     'id_str': '821784477076750338',
     'indices': [49, 57]},
    {'screen_name': 'KeishaBottoms',
     'name': 'Keisha Lance Bottoms',
     'id': 305818748,
     'id_str': '305818748',
     'indices': [68, 82]}],
   'urls': [{'url': 'https://t.co/tF9AJStpL6',
     'expanded_url': 'http://democrats.org/100daysthankyou',
     'display_url': 'democrats.org/100daysthankyou',
     'indices': [157, 180]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 722,
  'favorite_count': 5527,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 27 21:19:23 +0000 2021',
  'id': 1387154433985888260,
  'id_str': '1387154433985888260',
  'full_text': 'With the first 100 days of our administration under our belt, America is getting back on track—all thanks to the support of grassroots volunteers. Help us keep the momentum going by joining our Week of Action: https://t.co/alyMSnBATt',
  'truncated': False,
  'display_text_range': [0, 233],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/alyMSnBATt',
     'expanded_url': 'http://democrats.org/100-days',
     'display_url': 'democrats.org/100-days',
     'indices': [210, 233]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 1633,
  'favorite_count': 16175,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 27 19:32:54 +0000 2021',
  'id': 1387127637164822529,
  'id_str': '1387127637164822529',
  'full_text': 'RT @POTUS: I believe no one should work full time and still live in poverty. That’s why today, I raised the minimum wage to $15 an hour for…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 27 19:15:00 +0000 2021',
   'id': 1387123131500924929,
   'id_str': '1387123131500924929',
   'full_text': 'I believe no one should work full time and still live in poverty. That’s why today, I raised the minimum wage to $15 an hour for people working on federal contracts.',
   'truncated': False,
   'display_text_range': [0, 165],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 22688,
   'favorite_count': 248340,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 22688,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 26 22:12:44 +0000 2021',
  'id': 1386805471084941312,
  'id_str': '1386805471084941312',
  'full_text': 'The American Jobs Plan will strengthen unions, help protect workers, and rebuild our economy. https://t.co/sHNa1eRfiB',
  'truncated': False,
  'display_text_range': [0, 93],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1386805382090211335,
     'id_str': '1386805382090211335',
     'indices': [94, 117],
     'media_url': 'http://pbs.twimg.com/media/Ez7sJbwWQAcpB_2.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/Ez7sJbwWQAcpB_2.jpg',
     'url': 'https://t.co/sHNa1eRfiB',
     'display_url': 'pic.twitter.com/sHNa1eRfiB',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1386805471084941312/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1386805382090211335,
     'id_str': '1386805382090211335',
     'indices': [94, 117],
     'media_url': 'http://pbs.twimg.com/media/Ez7sJbwWQAcpB_2.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/Ez7sJbwWQAcpB_2.jpg',
     'url': 'https://t.co/sHNa1eRfiB',
     'display_url': 'pic.twitter.com/sHNa1eRfiB',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1386805471084941312/photo/1',
     'type': 'photo',
     'sizes': {'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2431,
  'favorite_count': 21504,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 26 19:03:23 +0000 2021',
  'id': 1386757820834586626,
  'id_str': '1386757820834586626',
  'full_text': 'RT @POTUS: Today, we’re launching a new program funded by the American Rescue Plan to provide nutrition assistance to more than 30 million…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Apr 26 19:00:02 +0000 2021',
   'id': 1386756976789671939,
   'id_str': '1386756976789671939',
   'full_text': 'Today, we’re launching a new program funded by the American Rescue Plan to provide nutrition assistance to more than 30 million children over the summer. Help is here to ensure no kid goes hungry in America.',
   'truncated': False,
   'display_text_range': [0, 207],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5800,
   'favorite_count': 46679,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5800,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Apr 25 21:05:37 +0000 2021',
  'id': 1386426190861197313,
  'id_str': '1386426190861197313',
  'full_text': 'Get vaccinated, America.',
  'truncated': False,
  'display_text_range': [0, 24],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 19542,
  'favorite_count': 207403,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Apr 25 19:45:17 +0000 2021',
  'id': 1386405977348472834,
  'id_str': '1386405977348472834',
  'full_text': 'RT @POTUS: Just as India sent assistance to the United States as our hospitals were strained early in the pandemic, we are determined to he…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Apr 25 19:29:17 +0000 2021',
   'id': 1386401947729633280,
   'id_str': '1386401947729633280',
   'full_text': 'Just as India sent assistance to the United States as our hospitals were strained early in the pandemic, we are determined to help India in its time of need. https://t.co/SzWRj0eP3y',
   'truncated': False,
   'display_text_range': [0, 157],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/SzWRj0eP3y',
      'expanded_url': 'https://twitter.com/JakeSullivan46/status/1386359529865162752',
      'display_url': 'twitter.com/JakeSullivan46…',
      'indices': [158, 181]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': True,
   'quoted_status_id': 1386359529865162752,
   'quoted_status_id_str': '1386359529865162752',
   'quoted_status_permalink': {'url': 'https://t.co/SzWRj0eP3y',
    'expanded': 'https://twitter.com/JakeSullivan46/status/1386359529865162752',
    'display': 'twitter.com/JakeSullivan46…'},
   'quoted_status': {'created_at': 'Sun Apr 25 16:40:43 +0000 2021',
    'id': 1386359529865162752,
    'id_str': '1386359529865162752',
    'full_text': 'Spoke today with National Security Advisor Ajit Doval about the spike in COVID cases in India and we agreed to stay in close touch in the coming days. The United States stands in solidarity with the people of India and we are deploying more supplies and resources: https://t.co/yDM7v2J7OA',
    'truncated': False,
    'display_text_range': [0, 264],
    'entities': {'hashtags': [],
     'symbols': [],
     'user_mentions': [],
     'urls': [],
     'media': [{'id': 1386359464585043969,
       'id_str': '1386359464585043969',
       'indices': [265, 288],
       'media_url': 'http://pbs.twimg.com/media/Ez1WlnmXoAEQkcZ.png',
       'media_url_https': 'https://pbs.twimg.com/media/Ez1WlnmXoAEQkcZ.png',
       'url': 'https://t.co/yDM7v2J7OA',
       'display_url': 'pic.twitter.com/yDM7v2J7OA',
       'expanded_url': 'https://twitter.com/JakeSullivan46/status/1386359529865162752/photo/1',
       'type': 'photo',
       'sizes': {'medium': {'w': 617, 'h': 689, 'resize': 'fit'},
        'small': {'w': 609, 'h': 680, 'resize': 'fit'},
        'large': {'w': 617, 'h': 689, 'resize': 'fit'},
        'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
    'extended_entities': {'media': [{'id': 1386359464585043969,
       'id_str': '1386359464585043969',
       'indices': [265, 288],
       'media_url': 'http://pbs.twimg.com/media/Ez1WlnmXoAEQkcZ.png',
       'media_url_https': 'https://pbs.twimg.com/media/Ez1WlnmXoAEQkcZ.png',
       'url': 'https://t.co/yDM7v2J7OA',
       'display_url': 'pic.twitter.com/yDM7v2J7OA',
       'expanded_url': 'https://twitter.com/JakeSullivan46/status/1386359529865162752/photo/1',
       'type': 'photo',
       'sizes': {'medium': {'w': 617, 'h': 689, 'resize': 'fit'},
        'small': {'w': 609, 'h': 680, 'resize': 'fit'},
        'large': {'w': 617, 'h': 689, 'resize': 'fit'},
        'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}}}]},
    'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'in_reply_to_screen_name': None,
    'user': {'id': 1356782857549676544,
     'id_str': '1356782857549676544',
     'name': 'Jake Sullivan',
     'screen_name': 'JakeSullivan46',
     'location': '',
     'description': 'White House National Security Advisor to @POTUS.',
     'url': 'https://t.co/NgUd6eRpNj',
     'entities': {'url': {'urls': [{'url': 'https://t.co/NgUd6eRpNj',
         'expanded_url': 'http://whitehouse.gov',
         'display_url': 'whitehouse.gov',
         'indices': [0, 23]}]},
      'description': {'urls': []}},
     'protected': False,
     'followers_count': 98531,
     'friends_count': 11,
     'listed_count': 840,
     'created_at': 'Wed Feb 03 01:55:49 +0000 2021',
     'favourites_count': 1,
     'utc_offset': None,
     'time_zone': None,
     'geo_enabled': False,
     'verified': True,
     'statuses_count': 221,
     'lang': None,
     'contributors_enabled': False,
     'is_translator': False,
     'is_translation_enabled': False,
     'profile_background_color': 'F5F8FA',
     'profile_background_image_url': None,
     'profile_background_image_url_https': None,
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/1357033238083084288/Y3GbMYWz_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1357033238083084288/Y3GbMYWz_normal.jpg',
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1356782857549676544/1612318340',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'has_extended_profile': True,
     'default_profile': True,
     'default_profile_image': False,
     'following': False,
     'follow_request_sent': False,
     'notifications': False,
     'translator_type': 'none',
     'withheld_in_countries': []},
    'geo': None,
    'coordinates': None,
    'place': None,
    'contributors': None,
    'is_quote_status': False,
    'retweet_count': 6500,
    'favorite_count': 31358,
    'favorited': False,
    'retweeted': False,
    'possibly_sensitive': False,
    'lang': 'en'},
   'retweet_count': 14958,
   'favorite_count': 90631,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': True,
  'quoted_status_id': 1386359529865162752,
  'quoted_status_id_str': '1386359529865162752',
  'quoted_status_permalink': {'url': 'https://t.co/SzWRj0eP3y',
   'expanded': 'https://twitter.com/JakeSullivan46/status/1386359529865162752',
   'display': 'twitter.com/JakeSullivan46…'},
  'retweet_count': 14958,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 24 21:55:00 +0000 2021',
  'id': 1386076233147076608,
  'id_str': '1386076233147076608',
  'full_text': 'RT @POTUS: Before I took office, I promised help was on the way. Just three months in, I’m proud to say help is here. We’ve delivered over…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Apr 24 21:54:28 +0000 2021',
   'id': 1386076099130580995,
   'id_str': '1386076099130580995',
   'full_text': 'Before I took office, I promised help was on the way. Just three months in, I’m proud to say help is here. We’ve delivered over 150 million relief checks, administered over 200 million shots, and are working hard to build back better every day.',
   'truncated': False,
   'display_text_range': [0, 244],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10867,
   'favorite_count': 105057,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10867,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 24 16:38:57 +0000 2021',
  'id': 1385996697180979201,
  'id_str': '1385996697180979201',
  'full_text': 'Let’s close the digital divide once and for all. Our American Jobs Plan will make sure every American has access to high-speed internet. https://t.co/Ru1NSfN7C0',
  'truncated': False,
  'display_text_range': [0, 136],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1385996467014447106,
     'id_str': '1385996467014447106',
     'indices': [137, 160],
     'media_url': 'http://pbs.twimg.com/media/EzwMcYRXsAIffi-.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EzwMcYRXsAIffi-.jpg',
     'url': 'https://t.co/Ru1NSfN7C0',
     'display_url': 'pic.twitter.com/Ru1NSfN7C0',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1385996697180979201/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1385996467014447106,
     'id_str': '1385996467014447106',
     'indices': [137, 160],
     'media_url': 'http://pbs.twimg.com/media/EzwMcYRXsAIffi-.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EzwMcYRXsAIffi-.jpg',
     'url': 'https://t.co/Ru1NSfN7C0',
     'display_url': 'pic.twitter.com/Ru1NSfN7C0',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1385996697180979201/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2621,
  'favorite_count': 23580,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 23 15:58:13 +0000 2021',
  'id': 1385624057916362752,
  'id_str': '1385624057916362752',
  'full_text': 'Heading back to Georgia with @DrBiden next Thursday to mark 100 days of our administration and thank folks for helping us build back better as a nation. See you soon!',
  'truncated': False,
  'display_text_range': [0, 166],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'DrBiden',
     'name': 'Dr. Jill Biden',
     'id': 821784477076750338,
     'id_str': '821784477076750338',
     'indices': [29, 37]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3776,
  'favorite_count': 50172,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 22 17:17:26 +0000 2021',
  'id': 1385281605757964288,
  'id_str': '1385281605757964288',
  'full_text': 'RT @WhiteHouse: Before taking office, President Biden set a bold goal of 100 million shots in his first 100 days.\n \nAfter reaching the goal…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 22 16:29:20 +0000 2021',
   'id': 1385269498895376387,
   'id_str': '1385269498895376387',
   'full_text': 'Before taking office, President Biden set a bold goal of 100 million shots in his first 100 days.\n \nAfter reaching the goal in just 58 days, he doubled it to 200 million.\n \nAnd today, because of the hard work of people across the country, we officially reached it. https://t.co/WrLCwsCAb7',
   'truncated': False,
   'display_text_range': [0, 264],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1385269475038146566,
      'id_str': '1385269475038146566',
      'indices': [265, 288],
      'media_url': 'http://pbs.twimg.com/tweet_video_thumb/Ezl3P4HXMAYXnFU.jpg',
      'media_url_https': 'https://pbs.twimg.com/tweet_video_thumb/Ezl3P4HXMAYXnFU.jpg',
      'url': 'https://t.co/WrLCwsCAb7',
      'display_url': 'pic.twitter.com/WrLCwsCAb7',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1385269498895376387/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1385269475038146566,
      'id_str': '1385269475038146566',
      'indices': [265, 288],
      'media_url': 'http://pbs.twimg.com/tweet_video_thumb/Ezl3P4HXMAYXnFU.jpg',
      'media_url_https': 'https://pbs.twimg.com/tweet_video_thumb/Ezl3P4HXMAYXnFU.jpg',
      'url': 'https://t.co/WrLCwsCAb7',
      'display_url': 'pic.twitter.com/WrLCwsCAb7',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1385269498895376387/photo/1',
      'type': 'animated_gif',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'variants': [{'bitrate': 0,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/tweet_video/Ezl3P4HXMAYXnFU.mp4'}]}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2389,
   'favorite_count': 15392,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2389,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 22 17:17:12 +0000 2021',
  'id': 1385281546932916224,
  'id_str': '1385281546932916224',
  'full_text': 'RT @POTUS: America is back. We rejoined the Paris Agreement and are ready to rally the world to tackle the climate crisis. Let’s do this.',
  'truncated': False,
  'display_text_range': [0, 137],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 22 15:45:00 +0000 2021',
   'id': 1385258342373892103,
   'id_str': '1385258342373892103',
   'full_text': 'America is back. We rejoined the Paris Agreement and are ready to rally the world to tackle the climate crisis. Let’s do this.',
   'truncated': False,
   'display_text_range': [0, 126],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 17371,
   'favorite_count': 185700,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 17371,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 21 16:30:38 +0000 2021',
  'id': 1384907441264025604,
  'id_str': '1384907441264025604',
  'full_text': 'RT @POTUS: The guilty verdict does not bring back George Floyd. But through the family’s pain, they are finding purpose so George’s legacy…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Apr 21 14:00:25 +0000 2021',
   'id': 1384869637628772352,
   'id_str': '1384869637628772352',
   'full_text': 'The guilty verdict does not bring back George Floyd. But through the family’s pain, they are finding purpose so George’s legacy will not be just about his death, but about what we must do in his memory. https://t.co/swjH0yprjN',
   'truncated': False,
   'display_text_range': [0, 202],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1384869561258942471,
      'id_str': '1384869561258942471',
      'indices': [203, 226],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1384869561258942471/img/XxWYTxAs5m-TUQnE.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1384869561258942471/img/XxWYTxAs5m-TUQnE.jpg',
      'url': 'https://t.co/swjH0yprjN',
      'display_url': 'pic.twitter.com/swjH0yprjN',
      'expanded_url': 'https://twitter.com/POTUS/status/1384869637628772352/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1384869561258942471,
      'id_str': '1384869561258942471',
      'indices': [203, 226],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1384869561258942471/img/XxWYTxAs5m-TUQnE.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1384869561258942471/img/XxWYTxAs5m-TUQnE.jpg',
      'url': 'https://t.co/swjH0yprjN',
      'display_url': 'pic.twitter.com/swjH0yprjN',
      'expanded_url': 'https://twitter.com/POTUS/status/1384869637628772352/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 61186,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1384869561258942471/pl/_dFkKIzssJCrGnDF.m3u8?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1384869561258942471/vid/720x720/81Ek-gzttMGu0a8B.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1384869561258942471/vid/540x540/BHhKgx5-ylwSs9Fz.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1384869561258942471/vid/320x320/ipdn0DLeruPaDwsv.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3663,
   'favorite_count': 28746,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3663,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 20 23:19:51 +0000 2021',
  'id': 1384648033024020485,
  'id_str': '1384648033024020485',
  'full_text': 'RT @POTUS: Today, a jury in Minnesota found former Minneapolis Police Officer Derek Chauvin guilty of murdering George Floyd.\n \nThe verdict…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 20 23:14:33 +0000 2021',
   'id': 1384646702360113152,
   'id_str': '1384646702360113152',
   'full_text': 'Today, a jury in Minnesota found former Minneapolis Police Officer Derek Chauvin guilty of murdering George Floyd.\n \nThe verdict is a step forward.\n \nAnd while nothing can ever bring George Floyd back, this can be a giant step forward on the march towards justice in America.',
   'truncated': False,
   'display_text_range': [0, 275],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004748,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8053,
   'favorite_count': 64462,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8053,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 20 23:08:04 +0000 2021',
  'id': 1384645067672104961,
  'id_str': '1384645067672104961',
  'full_text': 'RT @WhiteHouse: Live: President Biden and Vice President Harris address the nation on the verdict in the trial of Derek Chauvin. https://t.…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 20 23:06:25 +0000 2021',
   'id': 1384644651941048326,
   'id_str': '1384644651941048326',
   'full_text': 'Live: President Biden and Vice President Harris address the nation on the verdict in the trial of Derek Chauvin. https://t.co/wNeoPOcvwM',
   'truncated': False,
   'display_text_range': [0, 136],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/wNeoPOcvwM',
      'expanded_url': 'https://twitter.com/i/broadcasts/1OdKrVpDPbQKX',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [113, 136]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1942,
   'favorite_count': 10523,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1942,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 20 17:33:04 +0000 2021',
  'id': 1384560761746477062,
  'id_str': '1384560761746477062',
  'full_text': 'If we act now on the American Jobs Plan, in 50 years, people will look back and say this was the moment that America won the future. https://t.co/ZOJGr9E2i3',
  'truncated': False,
  'display_text_range': [0, 132],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [],
   'media': [{'id': 1384560537523167243,
     'id_str': '1384560537523167243',
     'indices': [133, 156],
     'media_url': 'http://pbs.twimg.com/media/EzbyeSEXoAsanPR.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EzbyeSEXoAsanPR.jpg',
     'url': 'https://t.co/ZOJGr9E2i3',
     'display_url': 'pic.twitter.com/ZOJGr9E2i3',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1384560761746477062/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}}}]},
  'extended_entities': {'media': [{'id': 1384560537523167243,
     'id_str': '1384560537523167243',
     'indices': [133, 156],
     'media_url': 'http://pbs.twimg.com/media/EzbyeSEXoAsanPR.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EzbyeSEXoAsanPR.jpg',
     'url': 'https://t.co/ZOJGr9E2i3',
     'display_url': 'pic.twitter.com/ZOJGr9E2i3',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1384560761746477062/photo/1',
     'type': 'photo',
     'sizes': {'large': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2522,
  'favorite_count': 19106,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 19 20:33:25 +0000 2021',
  'id': 1384243762289811457,
  'id_str': '1384243762289811457',
  'full_text': 'Today, every adult is eligible to get a COVID-19 vaccine. Better days are ahead.',
  'truncated': False,
  'display_text_range': [0, 80],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 16558,
  'favorite_count': 184479,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Apr 18 13:57:35 +0000 2021',
  'id': 1383781759557410822,
  'id_str': '1383781759557410822',
  'full_text': 'RT @POTUS: Imagine a future where we lead the world and tackle the threat of climate change with American jobs and ingenuity.\n\nWe can make…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Apr 18 13:48:48 +0000 2021',
   'id': 1383779550304161804,
   'id_str': '1383779550304161804',
   'full_text': 'Imagine a future where we lead the world and tackle the threat of climate change with American jobs and ingenuity.\n\nWe can make that future a reality with the American Jobs Plan. https://t.co/JcraqYmsjz',
   'truncated': False,
   'display_text_range': [0, 178],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1383779465273102342,
      'id_str': '1383779465273102342',
      'indices': [179, 202],
      'media_url': 'http://pbs.twimg.com/media/EzQsKV6VcAMrHgU.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EzQsKV6VcAMrHgU.jpg',
      'url': 'https://t.co/JcraqYmsjz',
      'display_url': 'pic.twitter.com/JcraqYmsjz',
      'expanded_url': 'https://twitter.com/POTUS/status/1383779550304161804/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1383779465273102342,
      'id_str': '1383779465273102342',
      'indices': [179, 202],
      'media_url': 'http://pbs.twimg.com/media/EzQsKV6VcAMrHgU.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EzQsKV6VcAMrHgU.jpg',
      'url': 'https://t.co/JcraqYmsjz',
      'display_url': 'pic.twitter.com/JcraqYmsjz',
      'expanded_url': 'https://twitter.com/POTUS/status/1383779550304161804/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 67413,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1383779465273102342/vid/320x320/leNwr87NpUjWQPty.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1383779465273102342/vid/720x720/SvP_nASz2ilz7mqM.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1383779465273102342/vid/540x540/yPXFbzZg209Kk5wN.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1383779465273102342/pl/FBDVfQAIACAYNhhI.m3u8?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4954,
   'favorite_count': 34468,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4954,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 16 21:32:03 +0000 2021',
  'id': 1383171354778873859,
  'id_str': '1383171354778873859',
  'full_text': 'RT @POTUS: Vice President Harris and I have been briefed on the mass shooting at a FedEx facility in Indianapolis. God bless the eight indi…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 16 19:02:00 +0000 2021',
   'id': 1383133591295700993,
   'id_str': '1383133591295700993',
   'full_text': 'Vice President Harris and I have been briefed on the mass shooting at a FedEx facility in Indianapolis. God bless the eight individuals we lost and their loved ones, and we pray for the wounded for their recovery. \n\nWe can, and must, do more to reduce gun violence and save lives.',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6259,
   'favorite_count': 55001,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6259,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 16 17:56:01 +0000 2021',
  'id': 1383116985630875652,
  'id_str': '1383116985630875652',
  'full_text': 'RT @POTUS: I’m looking forward to welcoming my friend Prime Minister Suga to the White House this afternoon for the first foreign leader vi…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 16 17:21:55 +0000 2021',
   'id': 1383108404835708933,
   'id_str': '1383108404835708933',
   'full_text': 'I’m looking forward to welcoming my friend Prime Minister Suga to the White House this afternoon for the first foreign leader visit of my presidency — and to renewing the historic alliance between the United States and Japan.',
   'truncated': False,
   'display_text_range': [0, 225],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3798,
   'favorite_count': 38486,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3798,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 14 18:54:48 +0000 2021',
  'id': 1382407002794700801,
  'id_str': '1382407002794700801',
  'full_text': 'RT @POTUS: It is time to end America’s longest war. \n\nIt is time for American troops to come home from Afghanistan.',
  'truncated': False,
  'display_text_range': [0, 115],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Apr 14 18:41:17 +0000 2021',
   'id': 1382403602065592321,
   'id_str': '1382403602065592321',
   'full_text': 'It is time to end America’s longest war. \n\nIt is time for American troops to come home from Afghanistan.',
   'truncated': False,
   'display_text_range': [0, 104],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 12084,
   'favorite_count': 129217,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 12084,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 14 17:12:44 +0000 2021',
  'id': 1382381317279604736,
  'id_str': '1382381317279604736',
  'full_text': 'RT @WHCOVIDResponse: We continue to make progress in our work to vaccinate as many adults in this country as we can. Our current 7-day dail…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WHCOVIDResponse',
     'name': 'White House COVID-19 Response Team',
     'id': 1352064843432472578,
     'id_str': '1352064843432472578',
     'indices': [3, 19]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Apr 14 15:18:44 +0000 2021',
   'id': 1382352629297205248,
   'id_str': '1382352629297205248',
   'full_text': 'We continue to make progress in our work to vaccinate as many adults in this country as we can. Our current 7-day daily average now stands at 3.3 million shots administered per day, up from 3 million at our last update. https://t.co/cXHbO2Ve6H',
   'truncated': False,
   'display_text_range': [0, 219],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1382351619258466305,
      'id_str': '1382351619258466305',
      'indices': [220, 243],
      'media_url': 'http://pbs.twimg.com/media/Ey8ZeUSWQAEdAPO.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ey8ZeUSWQAEdAPO.jpg',
      'url': 'https://t.co/cXHbO2Ve6H',
      'display_url': 'pic.twitter.com/cXHbO2Ve6H',
      'expanded_url': 'https://twitter.com/WHCOVIDResponse/status/1382352629297205248/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1382351619258466305,
      'id_str': '1382351619258466305',
      'indices': [220, 243],
      'media_url': 'http://pbs.twimg.com/media/Ey8ZeUSWQAEdAPO.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ey8ZeUSWQAEdAPO.jpg',
      'url': 'https://t.co/cXHbO2Ve6H',
      'display_url': 'pic.twitter.com/cXHbO2Ve6H',
      'expanded_url': 'https://twitter.com/WHCOVIDResponse/status/1382352629297205248/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 2048, 'h': 1154, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 676, 'resize': 'fit'}}}]},
   'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1352064843432472578,
    'id_str': '1352064843432472578',
    'name': 'White House COVID-19 Response Team',
    'screen_name': 'WHCOVIDResponse',
    'location': 'Washington, DC',
    'description': 'The Biden-Harris White House COVID-19 Response Team',
    'url': 'https://t.co/wr6bKFDIkY',
    'entities': {'url': {'urls': [{'url': 'https://t.co/wr6bKFDIkY',
        'expanded_url': 'http://whitehouse.gov',
        'display_url': 'whitehouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 396825,
    'friends_count': 11,
    'listed_count': 1948,
    'created_at': 'Thu Jan 21 01:26:20 +0000 2021',
    'favourites_count': 22,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 515,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1352078227263655940/D3mS-FBV_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1352078227263655940/D3mS-FBV_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1352064843432472578/1611240251',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 789,
   'favorite_count': 4755,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 789,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 14 00:31:02 +0000 2021',
  'id': 1382129231291936770,
  'id_str': '1382129231291936770',
  'full_text': 'RT @POTUS: Today, the FDA and CDC recommended a pause in the use of the Johnson &amp; Johnson vaccine. Here’s what you need to know: https://t.…',
  'truncated': False,
  'display_text_range': [0, 144],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Apr 14 00:30:00 +0000 2021',
   'id': 1382128972243210242,
   'id_str': '1382128972243210242',
   'full_text': 'Today, the FDA and CDC recommended a pause in the use of the Johnson &amp; Johnson vaccine. Here’s what you need to know: https://t.co/QVtrEkqO8F',
   'truncated': False,
   'display_text_range': [0, 121],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1382115899818319875,
      'id_str': '1382115899818319875',
      'indices': [122, 145],
      'media_url': 'http://pbs.twimg.com/media/Ey5DNQgXAAMR-mb.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ey5DNQgXAAMR-mb.jpg',
      'url': 'https://t.co/QVtrEkqO8F',
      'display_url': 'pic.twitter.com/QVtrEkqO8F',
      'expanded_url': 'https://twitter.com/POTUS/status/1382128972243210242/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'source_user_id': 1323730225067339784,
      'source_user_id_str': '1323730225067339784'}]},
   'extended_entities': {'media': [{'id': 1382115899818319875,
      'id_str': '1382115899818319875',
      'indices': [122, 145],
      'media_url': 'http://pbs.twimg.com/media/Ey5DNQgXAAMR-mb.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ey5DNQgXAAMR-mb.jpg',
      'url': 'https://t.co/QVtrEkqO8F',
      'display_url': 'pic.twitter.com/QVtrEkqO8F',
      'expanded_url': 'https://twitter.com/POTUS/status/1382128972243210242/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'source_user_id': 1323730225067339784,
      'source_user_id_str': '1323730225067339784',
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 135844,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1382115899818319875/vid/720x720/oWbwZ6z8CMI6bO9j.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1382115899818319875/vid/320x320/8FoV73NVyCm6y46_.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1382115899818319875/pl/zeUGnTL4apwhE_rQ.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1382115899818319875/vid/540x540/2icaxyzfrxakea_b.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'embeddable': True,
       'monetizable': False,
       'source_user': {'id': 1323730225067339784,
        'id_str': '1323730225067339784',
        'name': 'The White House',
        'screen_name': 'WhiteHouse',
        'location': 'United States of America',
        'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
        'url': 'https://t.co/121St65y97',
        'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
            'expanded_url': 'http://WhiteHouse.gov',
            'display_url': 'WhiteHouse.gov',
            'indices': [0, 23]}]},
         'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
            'expanded_url': 'http://whitehouse.gov/privacy',
            'display_url': 'whitehouse.gov/privacy',
            'indices': [65, 88]}]}},
        'protected': False,
        'followers_count': 7028902,
        'friends_count': 5,
        'listed_count': 10675,
        'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
        'favourites_count': 0,
        'utc_offset': None,
        'time_zone': None,
        'geo_enabled': False,
        'verified': True,
        'statuses_count': 3512,
        'lang': None,
        'contributors_enabled': False,
        'is_translator': False,
        'is_translation_enabled': False,
        'profile_background_color': 'F5F8FA',
        'profile_background_image_url': None,
        'profile_background_image_url_https': None,
        'profile_background_tile': False,
        'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
        'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
        'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
        'profile_link_color': '1DA1F2',
        'profile_sidebar_border_color': 'C0DEED',
        'profile_sidebar_fill_color': 'DDEEF6',
        'profile_text_color': '333333',
        'profile_use_background_image': True,
        'has_extended_profile': True,
        'default_profile': True,
        'default_profile_image': False,
        'following': False,
        'follow_request_sent': False,
        'notifications': False,
        'translator_type': 'none',
        'withheld_in_countries': []}}}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3271,
   'favorite_count': 14937,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3271,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 13 21:02:57 +0000 2021',
  'id': 1382076868363444225,
  'id_str': '1382076868363444225',
  'full_text': 'RT @POTUS: “When the will defies fear, when duty throws the gauntlet down to fate, when honor scorns to compromise with death — that is her…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 13 20:55:01 +0000 2021',
   'id': 1382074869047820290,
   'id_str': '1382074869047820290',
   'full_text': '“When the will defies fear, when duty throws the gauntlet down to fate, when honor scorns to compromise with death — that is heroism.” — R.G. Ingersoll \n\nCapitol Police Officer William Evans was a hero. https://t.co/Xtius0vq0z',
   'truncated': False,
   'display_text_range': [0, 202],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1382074867588161538,
      'id_str': '1382074867588161538',
      'indices': [203, 226],
      'media_url': 'http://pbs.twimg.com/media/Ey4dxP-WYAI_jwX.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ey4dxP-WYAI_jwX.jpg',
      'url': 'https://t.co/Xtius0vq0z',
      'display_url': 'pic.twitter.com/Xtius0vq0z',
      'expanded_url': 'https://twitter.com/POTUS/status/1382074869047820290/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1382074867588161538,
      'id_str': '1382074867588161538',
      'indices': [203, 226],
      'media_url': 'http://pbs.twimg.com/media/Ey4dxP-WYAI_jwX.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ey4dxP-WYAI_jwX.jpg',
      'url': 'https://t.co/Xtius0vq0z',
      'display_url': 'pic.twitter.com/Xtius0vq0z',
      'expanded_url': 'https://twitter.com/POTUS/status/1382074869047820290/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2980,
   'favorite_count': 27209,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2980,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 13 20:00:10 +0000 2021',
  'id': 1382061069024305152,
  'id_str': '1382061069024305152',
  'full_text': 'RT @POTUS: Race should never determine health outcomes — and pregnancy and childbirth should be safe for all. But for too many Black women,…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://sproutsocial.com" rel="nofollow">Sprout Social</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 13 19:59:12 +0000 2021',
   'id': 1382060825289048067,
   'id_str': '1382060825289048067',
   'full_text': 'Race should never determine health outcomes — and pregnancy and childbirth should be safe for all. But for too many Black women, safety and equity have been denied. This Black Maternal Health Week, our Administration is taking action to change that. https://t.co/9s33KmLSdv',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/9s33KmLSdv',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/presidential-actions/2021/04/13/a-proclamation-on-black-maternal-health-week-2021/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [250, 273]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2709,
   'favorite_count': 17058,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2709,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 12 23:56:08 +0000 2021',
  'id': 1381758062860587009,
  'id_str': '1381758062860587009',
  'full_text': 'RT @POTUS: Today I’m thinking about Daunte Wright and his family — and the pain, anger, and trauma that Black America experiences every day…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Apr 12 23:01:01 +0000 2021',
   'id': 1381744189680062465,
   'id_str': '1381744189680062465',
   'full_text': 'Today I’m thinking about Daunte Wright and his family — and the pain, anger, and trauma that Black America experiences every day. While we await a full investigation, we know what we need to do to move forward: rebuild trust and ensure accountability so no one is above the law.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 13292,
   'favorite_count': 109278,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 13292,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 10 23:31:17 +0000 2021',
  'id': 1381027031014633474,
  'id_str': '1381027031014633474',
  'full_text': 'RT @POTUS: Gun violence in this country is an epidemic — and it’s long past time Congress take action.',
  'truncated': False,
  'display_text_range': [0, 102],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Apr 10 23:30:00 +0000 2021',
   'id': 1381026709248602115,
   'id_str': '1381026709248602115',
   'full_text': 'Gun violence in this country is an epidemic — and it’s long past time Congress take action.',
   'truncated': False,
   'display_text_range': [0, 91],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 15014,
   'favorite_count': 140839,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 15014,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Apr 09 18:17:14 +0000 2021',
  'id': 1380585611841667072,
  'id_str': '1380585611841667072',
  'full_text': 'RT @WHCOVIDResponse: More than 112 million Americans have received at least one dose and more than 66 million adult Americans are now fully…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WHCOVIDResponse',
     'name': 'White House COVID-19 Response Team',
     'id': 1352064843432472578,
     'id_str': '1352064843432472578',
     'indices': [3, 19]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Apr 09 17:07:28 +0000 2021',
   'id': 1380568055097462792,
   'id_str': '1380568055097462792',
   'full_text': 'More than 112 million Americans have received at least one dose and more than 66 million adult Americans are now fully vaccinated. \n\nThat’s more than a quarter of all adult Americans who are now fully vaccinated, up from less than 1% when the President took office 11 weeks ago.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1352064843432472578,
    'id_str': '1352064843432472578',
    'name': 'White House COVID-19 Response Team',
    'screen_name': 'WHCOVIDResponse',
    'location': 'Washington, DC',
    'description': 'The Biden-Harris White House COVID-19 Response Team',
    'url': 'https://t.co/wr6bKFDIkY',
    'entities': {'url': {'urls': [{'url': 'https://t.co/wr6bKFDIkY',
        'expanded_url': 'http://whitehouse.gov',
        'display_url': 'whitehouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 396825,
    'friends_count': 11,
    'listed_count': 1948,
    'created_at': 'Thu Jan 21 01:26:20 +0000 2021',
    'favourites_count': 22,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 515,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1352078227263655940/D3mS-FBV_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1352078227263655940/D3mS-FBV_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1352064843432472578/1611240251',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1422,
   'favorite_count': 8849,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1422,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 08 21:54:05 +0000 2021',
  'id': 1380277797902487555,
  'id_str': '1380277797902487555',
  'full_text': 'RT @POTUS: My Administration is taking initial steps to reduce gun violence, including:\n\n- Stopping the proliferation of ghost guns\n- Regul…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 08 19:15:18 +0000 2021',
   'id': 1380237838579564546,
   'id_str': '1380237838579564546',
   'full_text': 'My Administration is taking initial steps to reduce gun violence, including:\n\n- Stopping the proliferation of ghost guns\n- Regulating pistols modified with a stabilizing brace\n- Helping states adopt red flag laws\n- Supporting community violence interventions',
   'truncated': False,
   'display_text_range': [0, 258],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5479,
   'favorite_count': 40172,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5479,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 08 16:00:19 +0000 2021',
  'id': 1380188766954983426,
  'id_str': '1380188766954983426',
  'full_text': 'RT @POTUS: Today, I’m joining Vice President Harris and Attorney General Garland to announce new actions to reduce gun violence. Tune in. h…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 08 15:55:28 +0000 2021',
   'id': 1380187546148339717,
   'id_str': '1380187546148339717',
   'full_text': 'Today, I’m joining Vice President Harris and Attorney General Garland to announce new actions to reduce gun violence. Tune in. https://t.co/p6dgJRYKwe',
   'truncated': False,
   'display_text_range': [0, 150],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/p6dgJRYKwe',
      'expanded_url': 'https://twitter.com/i/broadcasts/1lPJqXkzaPZGb',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [127, 150]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3631,
   'favorite_count': 25536,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3631,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Apr 07 21:10:08 +0000 2021',
  'id': 1379904346666770433,
  'id_str': '1379904346666770433',
  'full_text': 'RT @WhiteHouse: Clean drinking water is infrastructure. The American Jobs Plan will improve our water infrastructure by replacing 100% of t…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Apr 07 20:53:58 +0000 2021',
   'id': 1379900277097119746,
   'id_str': '1379900277097119746',
   'full_text': 'Clean drinking water is infrastructure. The American Jobs Plan will improve our water infrastructure by replacing 100% of the nation’s lead pipes and service lines — bringing clean drinking water to every American.',
   'truncated': False,
   'display_text_range': [0, 214],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4294,
   'favorite_count': 31203,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4294,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 06 21:14:58 +0000 2021',
  'id': 1379543174310428676,
  'id_str': '1379543174310428676',
  'full_text': 'RT @POTUS: I’m proud to share that yesterday, we crossed 150 million shots in just 75 days of my Administration — on our way to hitting our…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 06 20:16:23 +0000 2021',
   'id': 1379528431671648257,
   'id_str': '1379528431671648257',
   'full_text': 'I’m proud to share that yesterday, we crossed 150 million shots in just 75 days of my Administration — on our way to hitting our goal of 200 million shots by my 100th day in office.',
   'truncated': False,
   'display_text_range': [0, 181],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10087,
   'favorite_count': 100062,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10087,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Apr 06 20:11:41 +0000 2021',
  'id': 1379527249314086920,
  'id_str': '1379527249314086920',
  'full_text': 'RT @POTUS: My Administration is working to get America vaccinated as quickly as possible. Tune in as I provide an update on our progress an…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Apr 06 20:11:04 +0000 2021',
   'id': 1379527093952909318,
   'id_str': '1379527093952909318',
   'full_text': 'My Administration is working to get America vaccinated as quickly as possible. Tune in as I provide an update on our progress and the timeline moving forward. https://t.co/bHCeCGPLHr',
   'truncated': False,
   'display_text_range': [0, 182],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/bHCeCGPLHr',
      'expanded_url': 'https://twitter.com/i/broadcasts/1YqKDeQagQzGV',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [159, 182]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1383,
   'favorite_count': 9631,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1383,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Apr 05 20:55:24 +0000 2021',
  'id': 1379175862445223936,
  'id_str': '1379175862445223936',
  'full_text': 'RT @POTUS: Here’s the deal: Wall Street didn’t build this country — the great American middle class did. It’s time we rebuild the middle cl…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Apr 05 19:06:36 +0000 2021',
   'id': 1379148484415217666,
   'id_str': '1379148484415217666',
   'full_text': 'Here’s the deal: Wall Street didn’t build this country — the great American middle class did. It’s time we rebuild the middle class and bring everyone along regardless of race, gender, religion, ethnicity, sexual orientation, or disability.',
   'truncated': False,
   'display_text_range': [0, 240],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 14057,
   'favorite_count': 98768,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 14057,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Apr 04 14:37:24 +0000 2021',
  'id': 1378718350617022471,
  'id_str': '1378718350617022471',
  'full_text': 'RT @POTUS: From our family to yours, we wish you health, hope, joy, and peace. Happy Easter, everyone! https://t.co/3NHPrbFCVt',
  'truncated': False,
  'display_text_range': [0, 126],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1378716502812164098,
     'id_str': '1378716502812164098',
     'indices': [103, 126],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1378716502812164098/img/tPZTkcCKjZH7efvu.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1378716502812164098/img/tPZTkcCKjZH7efvu.jpg',
     'url': 'https://t.co/3NHPrbFCVt',
     'display_url': 'pic.twitter.com/3NHPrbFCVt',
     'expanded_url': 'https://twitter.com/POTUS/status/1378716622878298113/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'large': {'w': 1280, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1378716622878298113,
     'source_status_id_str': '1378716622878298113',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1378716502812164098,
     'id_str': '1378716502812164098',
     'indices': [103, 126],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1378716502812164098/img/tPZTkcCKjZH7efvu.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1378716502812164098/img/tPZTkcCKjZH7efvu.jpg',
     'url': 'https://t.co/3NHPrbFCVt',
     'display_url': 'pic.twitter.com/3NHPrbFCVt',
     'expanded_url': 'https://twitter.com/POTUS/status/1378716622878298113/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'large': {'w': 1280, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1378716622878298113,
     'source_status_id_str': '1378716622878298113',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [16, 9],
      'duration_millis': 99308,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1378716502812164098/vid/640x360/AltxCR5K6glXtGMM.mp4?tag=14'},
       {'bitrate': 2176000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1378716502812164098/vid/1280x720/u1adUJFQC336pxP6.mp4?tag=14'},
       {'bitrate': 288000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1378716502812164098/vid/480x270/9Hx3qgbFLTdaQKmr.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1378716502812164098/pl/Z5vEXSF_8NOIu6q4.m3u8?tag=14'}]},
     'additional_media_info': {'title': 'Easter Message from President Biden and the First Lady',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004750,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Apr 04 14:30:32 +0000 2021',
   'id': 1378716622878298113,
   'id_str': '1378716622878298113',
   'full_text': 'From our family to yours, we wish you health, hope, joy, and peace. Happy Easter, everyone! https://t.co/3NHPrbFCVt',
   'truncated': False,
   'display_text_range': [0, 91],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1378716502812164098,
      'id_str': '1378716502812164098',
      'indices': [92, 115],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1378716502812164098/img/tPZTkcCKjZH7efvu.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1378716502812164098/img/tPZTkcCKjZH7efvu.jpg',
      'url': 'https://t.co/3NHPrbFCVt',
      'display_url': 'pic.twitter.com/3NHPrbFCVt',
      'expanded_url': 'https://twitter.com/POTUS/status/1378716622878298113/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1378716502812164098,
      'id_str': '1378716502812164098',
      'indices': [92, 115],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1378716502812164098/img/tPZTkcCKjZH7efvu.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1378716502812164098/img/tPZTkcCKjZH7efvu.jpg',
      'url': 'https://t.co/3NHPrbFCVt',
      'display_url': 'pic.twitter.com/3NHPrbFCVt',
      'expanded_url': 'https://twitter.com/POTUS/status/1378716622878298113/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 1280, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 99308,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1378716502812164098/vid/640x360/AltxCR5K6glXtGMM.mp4?tag=14'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1378716502812164098/vid/1280x720/u1adUJFQC336pxP6.mp4?tag=14'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1378716502812164098/vid/480x270/9Hx3qgbFLTdaQKmr.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1378716502812164098/pl/Z5vEXSF_8NOIu6q4.m3u8?tag=14'}]},
      'additional_media_info': {'title': 'Easter Message from President Biden and the First Lady',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10879,
   'favorite_count': 99982,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10879,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Apr 03 14:49:10 +0000 2021',
  'id': 1378358923237994496,
  'id_str': '1378358923237994496',
  'full_text': 'RT @POTUS: This week, I announced the American Jobs Plan, which will invest in our infrastructure and strengthen America’s competitiveness…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Apr 03 14:01:01 +0000 2021',
   'id': 1378346805407141892,
   'id_str': '1378346805407141892',
   'full_text': 'This week, I announced the American Jobs Plan, which will invest in our infrastructure and strengthen America’s competitiveness for decades to come. My team and I answered your questions about the plan. Tune in. https://t.co/1psECeHfSs',
   'truncated': False,
   'display_text_range': [0, 211],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1378346589715103748,
      'id_str': '1378346589715103748',
      'indices': [212, 235],
      'media_url': 'http://pbs.twimg.com/media/EyDfHRbW8AE7lZ-.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EyDfHRbW8AE7lZ-.jpg',
      'url': 'https://t.co/1psECeHfSs',
      'display_url': 'pic.twitter.com/1psECeHfSs',
      'expanded_url': 'https://twitter.com/POTUS/status/1378346805407141892/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1378346589715103748,
      'id_str': '1378346589715103748',
      'indices': [212, 235],
      'media_url': 'http://pbs.twimg.com/media/EyDfHRbW8AE7lZ-.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EyDfHRbW8AE7lZ-.jpg',
      'url': 'https://t.co/1psECeHfSs',
      'display_url': 'pic.twitter.com/1psECeHfSs',
      'expanded_url': 'https://twitter.com/POTUS/status/1378346805407141892/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 199157,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1378346589715103748/vid/720x720/c-SPJcIhLCmyEpr_.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1378346589715103748/pl/b7PbmCHu7yVTdPWx.m3u8?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1378346589715103748/vid/320x320/ojceijDL8fKduB1Y.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1378346589715103748/vid/540x540/q2_lIWjZx-uCvC-4.mp4?tag=14'}]},
      'additional_media_info': {'title': 'A Weekly Conversation: Americans ask the White House about the AJP',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3847,
   'favorite_count': 21629,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3847,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 01 21:01:54 +0000 2021',
  'id': 1377727948543963145,
  'id_str': '1377727948543963145',
  'full_text': 'RT @POTUS: The American Jobs Plan will ensure every American can turn on the faucet or fountain and drink clean water. https://t.co/V1WT3Tk…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Apr 01 21:01:17 +0000 2021',
   'id': 1377727792960393218,
   'id_str': '1377727792960393218',
   'full_text': 'The American Jobs Plan will ensure every American can turn on the faucet or fountain and drink clean water. https://t.co/V1WT3TkISS',
   'truncated': False,
   'display_text_range': [0, 107],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1377727725998370817,
      'id_str': '1377727725998370817',
      'indices': [108, 131],
      'media_url': 'http://pbs.twimg.com/media/Ex6sH6PWgAwrcPv.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ex6sH6PWgAwrcPv.jpg',
      'url': 'https://t.co/V1WT3TkISS',
      'display_url': 'pic.twitter.com/V1WT3TkISS',
      'expanded_url': 'https://twitter.com/POTUS/status/1377727792960393218/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1377727725998370817,
      'id_str': '1377727725998370817',
      'indices': [108, 131],
      'media_url': 'http://pbs.twimg.com/media/Ex6sH6PWgAwrcPv.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ex6sH6PWgAwrcPv.jpg',
      'url': 'https://t.co/V1WT3TkISS',
      'display_url': 'pic.twitter.com/V1WT3TkISS',
      'expanded_url': 'https://twitter.com/POTUS/status/1377727792960393218/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 82325,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1377727725998370817/pl/R5SxI6MpwIE1D0RO.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1377727725998370817/vid/540x540/CdQXZAk4di_FwkvI.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1377727725998370817/vid/720x720/DGEZxfRafvwr7PrJ.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1377727725998370817/vid/320x320/jDUs4ErUxn5ql90o.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3016,
   'favorite_count': 21032,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3016,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 01 01:34:37 +0000 2021',
  'id': 1377434193827860480,
  'id_str': '1377434193827860480',
  'full_text': 'The American Jobs Plan is the largest American jobs investment since World War II.',
  'truncated': False,
  'display_text_range': [0, 82],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 9374,
  'favorite_count': 100940,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Apr 01 00:16:34 +0000 2021',
  'id': 1377414548097880068,
  'id_str': '1377414548097880068',
  'full_text': 'Under the American Jobs Plan, 100% of our nation’s lead pipes and service lines will be replaced—so every child in America can turn on the faucet or fountain and drink clean water. \n\nWe cannot delay another minute.',
  'truncated': False,
  'display_text_range': [0, 214],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 6671,
  'favorite_count': 52088,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 31 22:19:30 +0000 2021',
  'id': 1377385089340829700,
  'id_str': '1377385089340829700',
  'full_text': 'Wall Street didn’t build this country—the great American middle class did. This time, when we rebuild the middle class under the American Jobs Plan, we’re bringing everyone along.',
  'truncated': False,
  'display_text_range': [0, 179],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 10839,
  'favorite_count': 103130,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 31 21:10:52 +0000 2021',
  'id': 1377367815120957445,
  'id_str': '1377367815120957445',
  'full_text': 'Delivering for the American people is what the American Rescue Plan was about. It’s what the American Jobs Plan is about.\n\nWe can do this.\nWe have to do this.\nWe will do this.',
  'truncated': False,
  'display_text_range': [0, 175],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 2103,
  'favorite_count': 18244,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 31 20:52:27 +0000 2021',
  'id': 1377363181387980800,
  'id_str': '1377363181387980800',
  'full_text': 'The American Jobs Plan is a once-in-a-generation investment in America. It will:\n✅Modernize 20,000 miles of highways, roads, and main streets\n✅Repair 10,000 bridges desperately in need of upgrades \n✅Replace 100% of our nation’s lead pipes and service lines',
  'truncated': False,
  'display_text_range': [0, 256],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3858,
  'favorite_count': 24309,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 31 20:46:20 +0000 2021',
  'id': 1377361641491300354,
  'id_str': '1377361641491300354',
  'full_text': 'Millions of Americans lost their jobs last year.\n\nHere’s the truth: We all do better when we all do well. It’s time to build our economy from the bottom up—and the middle out—not the top down.',
  'truncated': False,
  'display_text_range': [0, 192],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 5158,
  'favorite_count': 44283,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 30 16:29:52 +0000 2021',
  'id': 1376934713617756163,
  'id_str': '1376934713617756163',
  'full_text': 'RT @POTUS: We can’t be silent in the face of rising violence against Asian Americans. That’s why today I’m taking additional steps to respo…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 30 16:17:06 +0000 2021',
   'id': 1376931500852187143,
   'id_str': '1376931500852187143',
   'full_text': 'We can’t be silent in the face of rising violence against Asian Americans. That’s why today I’m taking additional steps to respond–including establishing an initiative at the Department of Justice to address anti-Asian crimes.\n\nThese attacks are wrong, un-American, and must stop.',
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10359,
   'favorite_count': 66654,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10359,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 29 20:45:12 +0000 2021',
  'id': 1376636582866923526,
  'id_str': '1376636582866923526',
  'full_text': 'RT @POTUS: I’m proud to announce that three weeks from today, 90% of adults will be eligible to get vaccinated — and 90% of Americans will…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 29 19:03:00 +0000 2021',
   'id': 1376610861603774466,
   'id_str': '1376610861603774466',
   'full_text': 'I’m proud to announce that three weeks from today, 90% of adults will be eligible to get vaccinated — and 90% of Americans will live within 5 miles of a place to get a shot.',
   'truncated': False,
   'display_text_range': [0, 173],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 19644,
   'favorite_count': 209169,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 19644,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 29 18:31:27 +0000 2021',
  'id': 1376602924097343494,
  'id_str': '1376602924097343494',
  'full_text': 'RT @POTUS: Vice President Harris and I just wrapped up a COVID-19 briefing. Tune in as I give an update on our response to the virus and th…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 29 18:30:51 +0000 2021',
   'id': 1376602772116807680,
   'id_str': '1376602772116807680',
   'full_text': 'Vice President Harris and I just wrapped up a COVID-19 briefing. Tune in as I give an update on our response to the virus and the state of vaccinations. https://t.co/eAex72VFDH',
   'truncated': False,
   'display_text_range': [0, 176],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/eAex72VFDH',
      'expanded_url': 'https://twitter.com/i/broadcasts/1BRJjBrebppJw',
      'display_url': 'twitter.com/i/broadcasts/1…',
      'indices': [153, 176]}]},
   'source': '<a href="https://studio.twitter.com" rel="nofollow">Twitter Media Studio</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1619,
   'favorite_count': 10624,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1619,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 28 17:40:30 +0000 2021',
  'id': 1376227712533155845,
  'id_str': '1376227712533155845',
  'full_text': 'RT @POTUS: Two weeks ago, I directed all states, tribes, and territories to make all adult Americans eligible for the vaccine no later than…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Mar 28 15:35:00 +0000 2021',
   'id': 1376196131777089546,
   'id_str': '1376196131777089546',
   'full_text': 'Two weeks ago, I directed all states, tribes, and territories to make all adult Americans eligible for the vaccine no later than May 1 — and we’re already making progress. https://t.co/w6Ly5AVkks',
   'truncated': False,
   'display_text_range': [0, 171],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1376196130015432708,
      'id_str': '1376196130015432708',
      'indices': [172, 195],
      'media_url': 'http://pbs.twimg.com/media/Exk7Fr7WUAQgXMX.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Exk7Fr7WUAQgXMX.jpg',
      'url': 'https://t.co/w6Ly5AVkks',
      'display_url': 'pic.twitter.com/w6Ly5AVkks',
      'expanded_url': 'https://twitter.com/POTUS/status/1376196131777089546/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1376196130015432708,
      'id_str': '1376196130015432708',
      'indices': [172, 195],
      'media_url': 'http://pbs.twimg.com/media/Exk7Fr7WUAQgXMX.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Exk7Fr7WUAQgXMX.jpg',
      'url': 'https://t.co/w6Ly5AVkks',
      'display_url': 'pic.twitter.com/w6Ly5AVkks',
      'expanded_url': 'https://twitter.com/POTUS/status/1376196131777089546/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6200,
   'favorite_count': 50462,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6200,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 27 17:29:46 +0000 2021',
  'id': 1375862625997893634,
  'id_str': '1375862625997893634',
  'full_text': 'RT @WhiteHouse: Megan Rapinoe, Margaret Purce, and countless others have been leading the fight for pay equality. This week, the President…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Mar 27 16:16:01 +0000 2021',
   'id': 1375844063904157698,
   'id_str': '1375844063904157698',
   'full_text': 'Megan Rapinoe, Margaret Purce, and countless others have been leading the fight for pay equality. This week, the President and First Lady sat down with them to discuss closing the gender pay gap once and for all. https://t.co/jocr3w1aPE',
   'truncated': False,
   'display_text_range': [0, 212],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1375843974364151813,
      'id_str': '1375843974364151813',
      'indices': [213, 236],
      'media_url': 'http://pbs.twimg.com/media/Exf64icXEAEtsVo.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Exf64icXEAEtsVo.jpg',
      'url': 'https://t.co/jocr3w1aPE',
      'display_url': 'pic.twitter.com/jocr3w1aPE',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1375844063904157698/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1375843974364151813,
      'id_str': '1375843974364151813',
      'indices': [213, 236],
      'media_url': 'http://pbs.twimg.com/media/Exf64icXEAEtsVo.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Exf64icXEAEtsVo.jpg',
      'url': 'https://t.co/jocr3w1aPE',
      'display_url': 'pic.twitter.com/jocr3w1aPE',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1375844063904157698/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 134593,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375843974364151813/vid/540x540/CLa5DWG5F4mAvHXX.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375843974364151813/vid/720x720/fEe1SBoh3h2V3V0V.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1375843974364151813/pl/ShtviDmCrIvmiIkk.m3u8?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375843974364151813/vid/320x320/eywBwNaI5Cc2i8qd.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2243,
   'favorite_count': 14268,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2243,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 26 20:54:54 +0000 2021',
  'id': 1375551858807341057,
  'id_str': '1375551858807341057',
  'full_text': 'RT @POTUS: As we recall the Passover story of overcoming adversity, finding hope, and becoming free, we find a renewed salience. This weeke…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 26 20:41:08 +0000 2021',
   'id': 1375548396161937418,
   'id_str': '1375548396161937418',
   'full_text': 'As we recall the Passover story of overcoming adversity, finding hope, and becoming free, we find a renewed salience. This weekend, as Seders close with the familiar refrain, “Next year in Jerusalem,” we offer an additional prayer: Next year in person. Next year, together. https://t.co/TBU2dXMPCQ',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1375548282093629440,
      'id_str': '1375548282093629440',
      'indices': [274, 297],
      'media_url': 'http://pbs.twimg.com/media/Exbt-LKXMAUED-t.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Exbt-LKXMAUED-t.jpg',
      'url': 'https://t.co/TBU2dXMPCQ',
      'display_url': 'pic.twitter.com/TBU2dXMPCQ',
      'expanded_url': 'https://twitter.com/POTUS/status/1375548396161937418/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1375548282093629440,
      'id_str': '1375548282093629440',
      'indices': [274, 297],
      'media_url': 'http://pbs.twimg.com/media/Exbt-LKXMAUED-t.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Exbt-LKXMAUED-t.jpg',
      'url': 'https://t.co/TBU2dXMPCQ',
      'display_url': 'pic.twitter.com/TBU2dXMPCQ',
      'expanded_url': 'https://twitter.com/POTUS/status/1375548396161937418/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1920, 'h': 1080, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 141803,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375548282093629440/vid/640x360/p9gtChCtJsD7Gw53.mp4?tag=14'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375548282093629440/vid/1280x720/pctCcKU3M6DOuLdz.mp4?tag=14'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375548282093629440/vid/480x270/-KnnTJxWqk5OwM5g.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1375548282093629440/pl/SbtmfNgDZ9olIULW.m3u8?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3257,
   'favorite_count': 21176,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3257,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 26 18:15:28 +0000 2021',
  'id': 1375511738443984896,
  'id_str': '1375511738443984896',
  'full_text': 'RT @POTUS: I ran for president for three reasons: to restore the soul of the nation, rebuild the middle class, and unite the country. https…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 26 16:15:22 +0000 2021',
   'id': 1375481512603308033,
   'id_str': '1375481512603308033',
   'full_text': 'I ran for president for three reasons: to restore the soul of the nation, rebuild the middle class, and unite the country. https://t.co/LibS0bX1R6',
   'truncated': False,
   'display_text_range': [0, 122],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1375481429103153152,
      'id_str': '1375481429103153152',
      'indices': [123, 146],
      'media_url': 'http://pbs.twimg.com/media/ExaxJF5W8AIu54u.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/ExaxJF5W8AIu54u.jpg',
      'url': 'https://t.co/LibS0bX1R6',
      'display_url': 'pic.twitter.com/LibS0bX1R6',
      'expanded_url': 'https://twitter.com/POTUS/status/1375481512603308033/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1375481429103153152,
      'id_str': '1375481429103153152',
      'indices': [123, 146],
      'media_url': 'http://pbs.twimg.com/media/ExaxJF5W8AIu54u.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/ExaxJF5W8AIu54u.jpg',
      'url': 'https://t.co/LibS0bX1R6',
      'display_url': 'pic.twitter.com/LibS0bX1R6',
      'expanded_url': 'https://twitter.com/POTUS/status/1375481512603308033/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 49301,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375481429103153152/vid/320x320/NddJG8bcVXqc3uIx.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375481429103153152/vid/540x540/yXarciEdDPHzViuY.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1375481429103153152/pl/54t4dAmmhzq01mIB.m3u8?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1375481429103153152/vid/720x720/TuVRKRjHIn4PX8rH.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4813,
   'favorite_count': 37489,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4813,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 25 21:05:22 +0000 2021',
  'id': 1375192104469663750,
  'id_str': '1375192104469663750',
  'full_text': 'RT @POTUS: Before I took office, I set a big goal of 100 million shots in my first 100 days.\n \nWe hit the goal on day 58.\n \nNow, I’m settin…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 25 17:53:00 +0000 2021',
   'id': 1375143694777597958,
   'id_str': '1375143694777597958',
   'full_text': 'Before I took office, I set a big goal of 100 million shots in my first 100 days.\n \nWe hit the goal on day 58.\n \nNow, I’m setting a new one: 200 million shots in my first 100 days.\n \nLet’s do this.',
   'truncated': False,
   'display_text_range': [0, 197],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9581,
   'favorite_count': 100344,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9581,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 25 17:27:59 +0000 2021',
  'id': 1375137400033144832,
  'id_str': '1375137400033144832',
  'full_text': 'RT @POTUS: This afternoon, I’m holding my first formal press conference as president. Tune in. https://t.co/dvl1RAtOjr',
  'truncated': False,
  'display_text_range': [0, 118],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/dvl1RAtOjr',
     'expanded_url': 'https://www.pscp.tv/w/cytuCDF4ZUVXcXhSUlpOS1B8MU9kS3JWWlBCWXZLWOR6yPJl80L0di_QK_-6rP7317fvbN3X4JyX4RalllwR',
     'display_url': 'pscp.tv/w/cytuCDF4ZUVX…',
     'indices': [95, 118]}]},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 25 17:27:36 +0000 2021',
   'id': 1375137304566657026,
   'id_str': '1375137304566657026',
   'full_text': 'This afternoon, I’m holding my first formal press conference as president. Tune in. https://t.co/dvl1RAtOjr',
   'truncated': False,
   'display_text_range': [0, 107],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/dvl1RAtOjr',
      'expanded_url': 'https://www.pscp.tv/w/cytuCDF4ZUVXcXhSUlpOS1B8MU9kS3JWWlBCWXZLWOR6yPJl80L0di_QK_-6rP7317fvbN3X4JyX4RalllwR',
      'display_url': 'pscp.tv/w/cytuCDF4ZUVX…',
      'indices': [84, 107]}]},
   'source': '<a href="https://periscope.tv" rel="nofollow">Periscope</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2437,
   'favorite_count': 17416,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2437,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 24 16:36:04 +0000 2021',
  'id': 1374761947913146374,
  'id_str': '1374761947913146374',
  'full_text': 'RT @WHCOVIDResponse: In total, 84 million people -- about 1 in 3 adults -- have received at least one dose of the vaccine and more than 45…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WHCOVIDResponse',
     'name': 'White House COVID-19 Response Team',
     'id': 1352064843432472578,
     'id_str': '1352064843432472578',
     'indices': [3, 19]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 24 15:00:50 +0000 2021',
   'id': 1374737980313731078,
   'id_str': '1374737980313731078',
   'full_text': 'In total, 84 million people -- about 1 in 3 adults -- have received at least one dose of the vaccine and more than 45 million people are fully vaccinated.\n\n70% of those 65 and older have received at least one dose and 43% have been fully vaccinated.',
   'truncated': False,
   'display_text_range': [0, 249],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1352064843432472578,
    'id_str': '1352064843432472578',
    'name': 'White House COVID-19 Response Team',
    'screen_name': 'WHCOVIDResponse',
    'location': 'Washington, DC',
    'description': 'The Biden-Harris White House COVID-19 Response Team',
    'url': 'https://t.co/wr6bKFDIkY',
    'entities': {'url': {'urls': [{'url': 'https://t.co/wr6bKFDIkY',
        'expanded_url': 'http://whitehouse.gov',
        'display_url': 'whitehouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 396825,
    'friends_count': 11,
    'listed_count': 1948,
    'created_at': 'Thu Jan 21 01:26:20 +0000 2021',
    'favourites_count': 22,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 515,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1352078227263655940/D3mS-FBV_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1352078227263655940/D3mS-FBV_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1352064843432472578/1611240251',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1689,
   'favorite_count': 12157,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1689,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 24 00:52:38 +0000 2021',
  'id': 1374524524931207168,
  'id_str': '1374524524931207168',
  'full_text': 'RT @WhiteHouse: President Biden believes every single American deserves access to quality, affordable health care. Here’s a breakdown of ho…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 23 22:22:08 +0000 2021',
   'id': 1374486648780550160,
   'id_str': '1374486648780550160',
   'full_text': 'President Biden believes every single American deserves access to quality, affordable health care. Here’s a breakdown of how the American Rescue Plan helps make that a reality:',
   'truncated': False,
   'display_text_range': [0, 176],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2946,
   'favorite_count': 25132,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2946,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 23 17:33:46 +0000 2021',
  'id': 1374414080694358016,
  'id_str': '1374414080694358016',
  'full_text': 'RT @POTUS: Jill and I are devastated for the lives that have been shattered by gun violence in Colorado. Less than a week after the horrifi…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 23 17:32:02 +0000 2021',
   'id': 1374413643081682956,
   'id_str': '1374413643081682956',
   'full_text': 'Jill and I are devastated for the lives that have been shattered by gun violence in Colorado. Less than a week after the horrific murders in Georgia, another American city is scarred by a senseless attack. Our hearts go out to the victims, their families, and the survivors.',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4907,
   'favorite_count': 47575,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4907,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 22 21:09:33 +0000 2021',
  'id': 1374105995023159297,
  'id_str': '1374105995023159297',
  'full_text': 'RT @WhiteHouse: Big news: The Biden-Harris Administration set a new record this weekend with 6 million shots reported administered. We’re r…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 22 20:30:00 +0000 2021',
   'id': 1374096043252531200,
   'id_str': '1374096043252531200',
   'full_text': 'Big news: The Biden-Harris Administration set a new record this weekend with 6 million shots reported administered. We’re ramping up vaccination efforts every day to get America vaccinated quickly and equitably.',
   'truncated': False,
   'display_text_range': [0, 211],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3785,
   'favorite_count': 35181,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3785,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 22 18:04:25 +0000 2021',
  'id': 1374059403108827137,
  'id_str': '1374059403108827137',
  'full_text': 'RT @POTUS: Under the American Rescue Plan, the typical family of four is getting a $5,600 check. That money helps folks keep a roof over th…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 22 14:30:01 +0000 2021',
   'id': 1374005447456403458,
   'id_str': '1374005447456403458',
   'full_text': 'Under the American Rescue Plan, the typical family of four is getting a $5,600 check. That money helps folks keep a roof over their head and put food on the table. Help is here.',
   'truncated': False,
   'display_text_range': [0, 177],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7320,
   'favorite_count': 70960,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7320,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 21 23:35:58 +0000 2021',
  'id': 1373780456034988032,
  'id_str': '1373780456034988032',
  'full_text': 'RT @POTUS: Mask up, America. https://t.co/6yaUHYmzWC',
  'truncated': False,
  'display_text_range': [0, 52],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1373771405746171904,
     'id_str': '1373771405746171904',
     'indices': [29, 52],
     'media_url': 'http://pbs.twimg.com/media/ExCd0KIW8AAijGN.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/ExCd0KIW8AAijGN.jpg',
     'url': 'https://t.co/6yaUHYmzWC',
     'display_url': 'pic.twitter.com/6yaUHYmzWC',
     'expanded_url': 'https://twitter.com/POTUS/status/1373771407218335745/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}},
     'source_status_id': 1373771407218335745,
     'source_status_id_str': '1373771407218335745',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1373771405746171904,
     'id_str': '1373771405746171904',
     'indices': [29, 52],
     'media_url': 'http://pbs.twimg.com/media/ExCd0KIW8AAijGN.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/ExCd0KIW8AAijGN.jpg',
     'url': 'https://t.co/6yaUHYmzWC',
     'display_url': 'pic.twitter.com/6yaUHYmzWC',
     'expanded_url': 'https://twitter.com/POTUS/status/1373771407218335745/photo/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 454, 'resize': 'fit'},
      'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
      'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}},
     'source_status_id': 1373771407218335745,
     'source_status_id_str': '1373771407218335745',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Mar 21 23:00:01 +0000 2021',
   'id': 1373771407218335745,
   'id_str': '1373771407218335745',
   'full_text': 'Mask up, America. https://t.co/6yaUHYmzWC',
   'truncated': False,
   'display_text_range': [0, 17],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1373771405746171904,
      'id_str': '1373771405746171904',
      'indices': [18, 41],
      'media_url': 'http://pbs.twimg.com/media/ExCd0KIW8AAijGN.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/ExCd0KIW8AAijGN.jpg',
      'url': 'https://t.co/6yaUHYmzWC',
      'display_url': 'pic.twitter.com/6yaUHYmzWC',
      'expanded_url': 'https://twitter.com/POTUS/status/1373771407218335745/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1373771405746171904,
      'id_str': '1373771405746171904',
      'indices': [18, 41],
      'media_url': 'http://pbs.twimg.com/media/ExCd0KIW8AAijGN.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/ExCd0KIW8AAijGN.jpg',
      'url': 'https://t.co/6yaUHYmzWC',
      'display_url': 'pic.twitter.com/6yaUHYmzWC',
      'expanded_url': 'https://twitter.com/POTUS/status/1373771407218335745/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 18563,
   'favorite_count': 213691,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 18563,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 21 14:33:23 +0000 2021',
  'id': 1373643910451503111,
  'id_str': '1373643910451503111',
  'full_text': 'RT @WhiteHouse: Before President Biden took office, the U.S. was administering an average of 900,000 COVID-19 vaccine doses a day.\n\nLast we…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Mar 21 13:00:02 +0000 2021',
   'id': 1373620416451854342,
   'id_str': '1373620416451854342',
   'full_text': 'Before President Biden took office, the U.S. was administering an average of 900,000 COVID-19 vaccine doses a day.\n\nLast week, we averaged 2.5 million per day. https://t.co/fpDreVmwSn',
   'truncated': False,
   'display_text_range': [0, 159],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1373620414937718785,
      'id_str': '1373620414937718785',
      'indices': [160, 183],
      'media_url': 'http://pbs.twimg.com/media/ExAUfViWYAEuBu0.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/ExAUfViWYAEuBu0.jpg',
      'url': 'https://t.co/fpDreVmwSn',
      'display_url': 'pic.twitter.com/fpDreVmwSn',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1373620416451854342/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1373620414937718785,
      'id_str': '1373620414937718785',
      'indices': [160, 183],
      'media_url': 'http://pbs.twimg.com/media/ExAUfViWYAEuBu0.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/ExAUfViWYAEuBu0.jpg',
      'url': 'https://t.co/fpDreVmwSn',
      'display_url': 'pic.twitter.com/fpDreVmwSn',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1373620416451854342/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3838,
   'favorite_count': 30433,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3838,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 20 14:48:15 +0000 2021',
  'id': 1373285260667019266,
  'id_str': '1373285260667019266',
  'full_text': 'RT @POTUS: Like countless people across the country, Jocelyn and her family are struggling to make ends meet. I gave her a call to discuss…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Mar 20 14:00:28 +0000 2021',
   'id': 1373273236000100352,
   'id_str': '1373273236000100352',
   'full_text': 'Like countless people across the country, Jocelyn and her family are struggling to make ends meet. I gave her a call to discuss how the American Rescue Plan will help. https://t.co/AIJIIevlgS',
   'truncated': False,
   'display_text_range': [0, 167],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1373273137324953608,
      'id_str': '1373273137324953608',
      'indices': [168, 191],
      'media_url': 'http://pbs.twimg.com/media/Ew7YunjWYAI6HUe.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ew7YunjWYAI6HUe.jpg',
      'url': 'https://t.co/AIJIIevlgS',
      'display_url': 'pic.twitter.com/AIJIIevlgS',
      'expanded_url': 'https://twitter.com/POTUS/status/1373273236000100352/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1373273137324953608,
      'id_str': '1373273137324953608',
      'indices': [168, 191],
      'media_url': 'http://pbs.twimg.com/media/Ew7YunjWYAI6HUe.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ew7YunjWYAI6HUe.jpg',
      'url': 'https://t.co/AIJIIevlgS',
      'display_url': 'pic.twitter.com/AIJIIevlgS',
      'expanded_url': 'https://twitter.com/POTUS/status/1373273236000100352/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 152861,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1373273137324953608/vid/720x720/c7BhBIIsenWmUsbD.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1373273137324953608/pl/QnDB_lwftvewVSLu.m3u8?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1373273137324953608/vid/320x320/Ge-pLzNoLeqk_idV.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1373273137324953608/vid/540x540/55xrS6PKhQb3QH0b.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3478,
   'favorite_count': 24507,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3478,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 19 22:53:25 +0000 2021',
  'id': 1373044970135957506,
  'id_str': '1373044970135957506',
  'full_text': 'RT @POTUS: Words have consequences. \n\nIt’s called the coronavirus.\n\nFull stop.',
  'truncated': False,
  'display_text_range': [0, 78],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 19 22:25:00 +0000 2021',
   'id': 1373037818277167112,
   'id_str': '1373037818277167112',
   'full_text': 'Words have consequences. \n\nIt’s called the coronavirus.\n\nFull stop.',
   'truncated': False,
   'display_text_range': [0, 67],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 22476,
   'favorite_count': 193394,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 22476,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 19 19:27:10 +0000 2021',
  'id': 1372993067284856834,
  'id_str': '1372993067284856834',
  'full_text': 'RT @POTUS: This afternoon, Vice President Harris and I are meeting with Asian American leaders in Atlanta, Georgia. We’re going to discuss…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 19 19:17:16 +0000 2021',
   'id': 1372990573175537665,
   'id_str': '1372990573175537665',
   'full_text': 'This afternoon, Vice President Harris and I are meeting with Asian American leaders in Atlanta, Georgia. We’re going to discuss the ongoing attacks against the community and how we move forward. It’s up to all of us to root out racism and give hate no safe harbor in America.',
   'truncated': False,
   'display_text_range': [0, 275],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7153,
   'favorite_count': 65993,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7153,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 19 01:22:06 +0000 2021',
  'id': 1372720000159584257,
  'id_str': '1372720000159584257',
  'full_text': 'RT @WhiteHouse: Big News: President Biden announced that tomorrow, our Administration will hit 100 million COVID-19 shots administered. \n\nT…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 19 00:46:00 +0000 2021',
   'id': 1372710913690730498,
   'id_str': '1372710913690730498',
   'full_text': 'Big News: President Biden announced that tomorrow, our Administration will hit 100 million COVID-19 shots administered. \n\nThat’s after just 58 days in office — and 42 days ahead of schedule.',
   'truncated': False,
   'display_text_range': [0, 190],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5937,
   'favorite_count': 58263,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5937,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 18 20:01:03 +0000 2021',
  'id': 1372639205394944002,
  'id_str': '1372639205394944002',
  'full_text': 'RT @POTUS: In honor of the victims of the senseless shootings in Atlanta, I’ve ordered the flag of the United States to be flown at half-st…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 18 19:52:15 +0000 2021',
   'id': 1372636991683239946,
   'id_str': '1372636991683239946',
   'full_text': 'In honor of the victims of the senseless shootings in Atlanta, I’ve ordered the flag of the United States to be flown at half-staff. To the loved ones of those we lost on Tuesday, know the nation mourns with you. https://t.co/abZDiisNAf',
   'truncated': False,
   'display_text_range': [0, 212],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1372636960406319108,
      'id_str': '1372636960406319108',
      'indices': [213, 236],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1372636960406319108/img/Ksl6uX0CDZeyIYJe.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1372636960406319108/img/Ksl6uX0CDZeyIYJe.jpg',
      'url': 'https://t.co/abZDiisNAf',
      'display_url': 'pic.twitter.com/abZDiisNAf',
      'expanded_url': 'https://twitter.com/POTUS/status/1372636991683239946/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1372636960406319108,
      'id_str': '1372636960406319108',
      'indices': [213, 236],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1372636960406319108/img/Ksl6uX0CDZeyIYJe.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1372636960406319108/img/Ksl6uX0CDZeyIYJe.jpg',
      'url': 'https://t.co/abZDiisNAf',
      'display_url': 'pic.twitter.com/abZDiisNAf',
      'expanded_url': 'https://twitter.com/POTUS/status/1372636991683239946/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 23857,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1372636960406319108/pl/nnWgo6bYLZoxm8JI.m3u8?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1372636960406319108/vid/320x320/iMzjWqxXKH5VrHcn.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1372636960406319108/vid/720x720/0o64N3kDVuQFieNF.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1372636960406319108/vid/540x540/8UdhrR4WFmZWcadZ.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7095,
   'favorite_count': 54088,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7095,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 18 01:20:33 +0000 2021',
  'id': 1372357223033241606,
  'id_str': '1372357223033241606',
  'full_text': 'RT @POTUS: Jill and I are keeping everyone impacted by the shootings in Atlanta in our prayers. We don’t yet know the motive, but what we d…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 18 00:20:36 +0000 2021',
   'id': 1372342135912022019,
   'id_str': '1372342135912022019',
   'full_text': 'Jill and I are keeping everyone impacted by the shootings in Atlanta in our prayers. We don’t yet know the motive, but what we do know is that the Asian-American community is feeling enormous pain tonight. The recent attacks against the community are un-American. They must stop.',
   'truncated': False,
   'display_text_range': [0, 279],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10862,
   'favorite_count': 96307,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10862,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 16 21:05:40 +0000 2021',
  'id': 1371930690556661765,
  'id_str': '1371930690556661765',
  'full_text': 'RT @WhiteHouse: Across the country, millions of small businesses are struggling to keep their doors open. Here’s a breakdown of how the Ame…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 16 20:42:10 +0000 2021',
   'id': 1371924777015910400,
   'id_str': '1371924777015910400',
   'full_text': 'Across the country, millions of small businesses are struggling to keep their doors open. Here’s a breakdown of how the American Rescue Plan will help:',
   'truncated': False,
   'display_text_range': [0, 151],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1884,
   'favorite_count': 12038,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1884,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 16 16:15:39 +0000 2021',
  'id': 1371857703878942728,
  'id_str': '1371857703878942728',
  'full_text': 'RT @POTUS: That’s the American Rescue Plan. https://t.co/7pE89mi4C6',
  'truncated': False,
  'display_text_range': [0, 67],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1371849236552253452,
     'id_str': '1371849236552253452',
     'indices': [44, 67],
     'media_url': 'http://pbs.twimg.com/media/EwnJollWgAAaeIN.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EwnJollWgAAaeIN.jpg',
     'url': 'https://t.co/7pE89mi4C6',
     'display_url': 'pic.twitter.com/7pE89mi4C6',
     'expanded_url': 'https://twitter.com/POTUS/status/1371849266419892234/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1371849266419892234,
     'source_status_id_str': '1371849266419892234',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1371849236552253452,
     'id_str': '1371849236552253452',
     'indices': [44, 67],
     'media_url': 'http://pbs.twimg.com/media/EwnJollWgAAaeIN.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EwnJollWgAAaeIN.jpg',
     'url': 'https://t.co/7pE89mi4C6',
     'display_url': 'pic.twitter.com/7pE89mi4C6',
     'expanded_url': 'https://twitter.com/POTUS/status/1371849266419892234/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1371849266419892234,
     'source_status_id_str': '1371849266419892234',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 2377,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1371849236552253452/pl/4Wx1pY4wPaAtZk6u.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1371849236552253452/vid/720x720/-p40N_EtvgW6muGH.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1371849236552253452/vid/320x320/tBh4Rl4yp-OxJKFy.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1371849236552253452/vid/540x540/KGqJ8WAFy1EhRfmi.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004750,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 16 15:42:07 +0000 2021',
   'id': 1371849266419892234,
   'id_str': '1371849266419892234',
   'full_text': 'That’s the American Rescue Plan. https://t.co/7pE89mi4C6',
   'truncated': False,
   'display_text_range': [0, 32],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1371849236552253452,
      'id_str': '1371849236552253452',
      'indices': [33, 56],
      'media_url': 'http://pbs.twimg.com/media/EwnJollWgAAaeIN.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwnJollWgAAaeIN.jpg',
      'url': 'https://t.co/7pE89mi4C6',
      'display_url': 'pic.twitter.com/7pE89mi4C6',
      'expanded_url': 'https://twitter.com/POTUS/status/1371849266419892234/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1371849236552253452,
      'id_str': '1371849236552253452',
      'indices': [33, 56],
      'media_url': 'http://pbs.twimg.com/media/EwnJollWgAAaeIN.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwnJollWgAAaeIN.jpg',
      'url': 'https://t.co/7pE89mi4C6',
      'display_url': 'pic.twitter.com/7pE89mi4C6',
      'expanded_url': 'https://twitter.com/POTUS/status/1371849266419892234/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 2377,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1371849236552253452/pl/4Wx1pY4wPaAtZk6u.m3u8?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1371849236552253452/vid/720x720/-p40N_EtvgW6muGH.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1371849236552253452/vid/320x320/tBh4Rl4yp-OxJKFy.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1371849236552253452/vid/540x540/KGqJ8WAFy1EhRfmi.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3388,
   'favorite_count': 22485,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3388,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 15 21:41:10 +0000 2021',
  'id': 1371577234968952837,
  'id_str': '1371577234968952837',
  'full_text': 'RT @WHCOVIDResponse: Over the weekend, we administered nearly 6 million doses of the COVID-19 vaccine. \n\nToday, for the first time on a Mon…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WHCOVIDResponse',
     'name': 'White House COVID-19 Response Team',
     'id': 1352064843432472578,
     'id_str': '1352064843432472578',
     'indices': [3, 19]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 15 18:26:56 +0000 2021',
   'id': 1371528354659246082,
   'id_str': '1371528354659246082',
   'full_text': 'Over the weekend, we administered nearly 6 million doses of the COVID-19 vaccine. \n\nToday, for the first time on a Monday, we administered more than 2 million doses, pushing our 7-day daily average up to 2.4 million shots per day.',
   'truncated': False,
   'display_text_range': [0, 230],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1352064843432472578,
    'id_str': '1352064843432472578',
    'name': 'White House COVID-19 Response Team',
    'screen_name': 'WHCOVIDResponse',
    'location': 'Washington, DC',
    'description': 'The Biden-Harris White House COVID-19 Response Team',
    'url': 'https://t.co/wr6bKFDIkY',
    'entities': {'url': {'urls': [{'url': 'https://t.co/wr6bKFDIkY',
        'expanded_url': 'http://whitehouse.gov',
        'display_url': 'whitehouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 396825,
    'friends_count': 11,
    'listed_count': 1948,
    'created_at': 'Thu Jan 21 01:26:20 +0000 2021',
    'favourites_count': 22,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 515,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1352078227263655940/D3mS-FBV_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1352078227263655940/D3mS-FBV_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1352064843432472578/1611240251',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1585,
   'favorite_count': 12317,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1585,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 15 17:25:34 +0000 2021',
  'id': 1371512914033643525,
  'id_str': '1371512914033643525',
  'full_text': 'RT @POTUS: Last week, I signed the American Rescue Plan into law and direct payments have begun going out to folks across the country. I kn…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 15 13:45:00 +0000 2021',
   'id': 1371457404626472963,
   'id_str': '1371457404626472963',
   'full_text': 'Last week, I signed the American Rescue Plan into law and direct payments have begun going out to folks across the country. I know there are a lot of questions about how to receive yours, so we put together this guide: https://t.co/p7m1hVmTCb',
   'truncated': False,
   'display_text_range': [0, 242],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/p7m1hVmTCb',
      'expanded_url': 'https://www.whitehouse.gov/briefing-room/blog/2021/03/10/the-american-rescue-plan-passed-now-what/',
      'display_url': 'whitehouse.gov/briefing-room/…',
      'indices': [219, 242]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3189,
   'favorite_count': 20631,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3189,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 14 23:23:46 +0000 2021',
  'id': 1371240669684060169,
  'id_str': '1371240669684060169',
  'full_text': 'RT @WhiteHouse: The Biden-Harris Administration has been working around the clock to get America vaccinated. We’ve doubled daily vaccinatio…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Mar 14 18:02:25 +0000 2021',
   'id': 1371159798981484549,
   'id_str': '1371159798981484549',
   'full_text': 'The Biden-Harris Administration has been working around the clock to get America vaccinated. We’ve doubled daily vaccinations, secured enough doses for every American, and opened hundreds of sites across the country. Here’s a breakdown of our progress: https://t.co/q6V8mnZRpK',
   'truncated': False,
   'display_text_range': [0, 252],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1371159797614182403,
      'id_str': '1371159797614182403',
      'indices': [253, 276],
      'media_url': 'http://pbs.twimg.com/media/EwdWkjsXAAMjhIm.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwdWkjsXAAMjhIm.jpg',
      'url': 'https://t.co/q6V8mnZRpK',
      'display_url': 'pic.twitter.com/q6V8mnZRpK',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1371159798981484549/photo/1',
      'type': 'photo',
      'sizes': {'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1371159797614182403,
      'id_str': '1371159797614182403',
      'indices': [253, 276],
      'media_url': 'http://pbs.twimg.com/media/EwdWkjsXAAMjhIm.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwdWkjsXAAMjhIm.jpg',
      'url': 'https://t.co/q6V8mnZRpK',
      'display_url': 'pic.twitter.com/q6V8mnZRpK',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1371159798981484549/photo/1',
      'type': 'photo',
      'sizes': {'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3396,
   'favorite_count': 22744,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3396,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 14 15:12:51 +0000 2021',
  'id': 1371117123859316736,
  'id_str': '1371117123859316736',
  'full_text': 'It matters whether you continue to wear a mask.  \nIt matters whether you continue to socially distance.  \nIt matters whether you wash your hands.  \n\nIt all matters and can help save lives.',
  'truncated': False,
  'display_text_range': [0, 188],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 30610,
  'favorite_count': 234769,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 13 20:38:58 +0000 2021',
  'id': 1370836807454224386,
  'id_str': '1370836807454224386',
  'full_text': 'RT @POTUS: To everyone out there who’s hurting or struggling to get by: help is here. https://t.co/fkME0yMmBK',
  'truncated': False,
  'display_text_range': [0, 109],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1370819453160685571,
     'id_str': '1370819453160685571',
     'indices': [86, 109],
     'media_url': 'http://pbs.twimg.com/media/EwYhDqoXIAwod7g.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EwYhDqoXIAwod7g.jpg',
     'url': 'https://t.co/fkME0yMmBK',
     'display_url': 'pic.twitter.com/fkME0yMmBK',
     'expanded_url': 'https://twitter.com/POTUS/status/1370819489391124492/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1370819489391124492,
     'source_status_id_str': '1370819489391124492',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1370819453160685571,
     'id_str': '1370819453160685571',
     'indices': [86, 109],
     'media_url': 'http://pbs.twimg.com/media/EwYhDqoXIAwod7g.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EwYhDqoXIAwod7g.jpg',
     'url': 'https://t.co/fkME0yMmBK',
     'display_url': 'pic.twitter.com/fkME0yMmBK',
     'expanded_url': 'https://twitter.com/POTUS/status/1370819489391124492/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1370819489391124492,
     'source_status_id_str': '1370819489391124492',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 11011,
      'variants': [{'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1370819453160685571/pl/0Qxn0d1cmHsODELi.m3u8?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1370819453160685571/vid/720x720/KcAcW--Gb0q2JCCN.mp4?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1370819453160685571/vid/320x320/x-htXl4Ott6odi3K.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1370819453160685571/vid/540x540/khzThFaEcwL-r5Gw.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004750,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Mar 13 19:30:09 +0000 2021',
   'id': 1370819489391124492,
   'id_str': '1370819489391124492',
   'full_text': 'To everyone out there who’s hurting or struggling to get by: help is here. https://t.co/fkME0yMmBK',
   'truncated': False,
   'display_text_range': [0, 74],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1370819453160685571,
      'id_str': '1370819453160685571',
      'indices': [75, 98],
      'media_url': 'http://pbs.twimg.com/media/EwYhDqoXIAwod7g.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwYhDqoXIAwod7g.jpg',
      'url': 'https://t.co/fkME0yMmBK',
      'display_url': 'pic.twitter.com/fkME0yMmBK',
      'expanded_url': 'https://twitter.com/POTUS/status/1370819489391124492/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1370819453160685571,
      'id_str': '1370819453160685571',
      'indices': [75, 98],
      'media_url': 'http://pbs.twimg.com/media/EwYhDqoXIAwod7g.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwYhDqoXIAwod7g.jpg',
      'url': 'https://t.co/fkME0yMmBK',
      'display_url': 'pic.twitter.com/fkME0yMmBK',
      'expanded_url': 'https://twitter.com/POTUS/status/1370819489391124492/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 11011,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1370819453160685571/pl/0Qxn0d1cmHsODELi.m3u8?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1370819453160685571/vid/720x720/KcAcW--Gb0q2JCCN.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1370819453160685571/vid/320x320/x-htXl4Ott6odi3K.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1370819453160685571/vid/540x540/khzThFaEcwL-r5Gw.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3934,
   'favorite_count': 27427,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3934,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 13 17:42:27 +0000 2021',
  'id': 1370792386280972289,
  'id_str': '1370792386280972289',
  'full_text': 'The American Rescue Plan means a $7,000 check for a single mom of four. It means more support to safely and quickly reopen schools. It means setting up additional vaccination sites to help America get back to normal. \n\nWhat does the American Rescue Plan mean to you?',
  'truncated': False,
  'display_text_range': [0, 266],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 11272,
  'favorite_count': 126686,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 12 19:34:12 +0000 2021',
  'id': 1370458121773195271,
  'id_str': '1370458121773195271',
  'full_text': 'RT @POTUS: This afternoon, I’m joining Vice President Harris and members of Congress to celebrate the passage of the American Rescue Plan.…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 12 19:33:49 +0000 2021',
   'id': 1370458024746225665,
   'id_str': '1370458024746225665',
   'full_text': 'This afternoon, I’m joining Vice President Harris and members of Congress to celebrate the passage of the American Rescue Plan. Tune in. https://t.co/qBHFdRxqle',
   'truncated': False,
   'display_text_range': [0, 160],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/qBHFdRxqle',
      'expanded_url': 'https://www.pscp.tv/w/cxpoHTF4ZUVXcXhSUlpOS1B8MU9kS3JWb1pQYk9LWGqWVTnep6mHiLaJ_kX0GY9cFy4fGCOmlmv1d1uhSxAA',
      'display_url': 'pscp.tv/w/cxpoHTF4ZUVX…',
      'indices': [137, 160]}]},
   'source': '<a href="https://periscope.tv" rel="nofollow">Periscope</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3111,
   'favorite_count': 22838,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3111,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 12 16:30:45 +0000 2021',
  'id': 1370411955173912576,
  'id_str': '1370411955173912576',
  'full_text': '85% of American households will get direct checks from the American Rescue Plan.\n\nFor so many Americans, that means they can pay the rent. That means they can put food on the table.  \n\nShare below what the American Rescue Plan will do for you.',
  'truncated': False,
  'display_text_range': [0, 243],
  'entities': {'hashtags': [], 'symbols': [], 'user_mentions': [], 'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 14743,
  'favorite_count': 148616,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 12 01:28:15 +0000 2021',
  'id': 1370184833226399744,
  'id_str': '1370184833226399744',
  'full_text': 'RT @POTUS: All adult Americans will be eligible to get the vaccine no later than May 1.',
  'truncated': False,
  'display_text_range': [0, 87],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 12 01:15:32 +0000 2021',
   'id': 1370181634146832384,
   'id_str': '1370181634146832384',
   'full_text': 'All adult Americans will be eligible to get the vaccine no later than May 1.',
   'truncated': False,
   'display_text_range': [0, 76],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 25642,
   'favorite_count': 244064,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 25642,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 11 21:49:48 +0000 2021',
  'id': 1370129856600670208,
  'id_str': '1370129856600670208',
  'full_text': 'RT @POTUS: Before I took office, I promised you that help was on the way. Today, I signed the American Rescue Plan into law, and can offici…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 11 21:46:40 +0000 2021',
   'id': 1370129068423794692,
   'id_str': '1370129068423794692',
   'full_text': 'Before I took office, I promised you that help was on the way. Today, I signed the American Rescue Plan into law, and can officially say: help is here. https://t.co/uuEZAkGloz',
   'truncated': False,
   'display_text_range': [0, 151],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1370129066607656960,
      'id_str': '1370129066607656960',
      'indices': [152, 175],
      'media_url': 'http://pbs.twimg.com/media/EwOtIHeWQAA0I5v.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwOtIHeWQAA0I5v.jpg',
      'url': 'https://t.co/uuEZAkGloz',
      'display_url': 'pic.twitter.com/uuEZAkGloz',
      'expanded_url': 'https://twitter.com/POTUS/status/1370129068423794692/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1370129066607656960,
      'id_str': '1370129066607656960',
      'indices': [152, 175],
      'media_url': 'http://pbs.twimg.com/media/EwOtIHeWQAA0I5v.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwOtIHeWQAA0I5v.jpg',
      'url': 'https://t.co/uuEZAkGloz',
      'display_url': 'pic.twitter.com/uuEZAkGloz',
      'expanded_url': 'https://twitter.com/POTUS/status/1370129068423794692/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 11927,
   'favorite_count': 112439,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 11927,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 10 20:37:40 +0000 2021',
  'id': 1369749317628661760,
  'id_str': '1369749317628661760',
  'full_text': 'RT @WhiteHouse: From $1,400 checks and unemployment relief to vaccines for every American — help is here. https://t.co/R0AYaTbkTV',
  'truncated': False,
  'display_text_range': [0, 129],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': [],
   'media': [{'id': 1369738836176166913,
     'id_str': '1369738836176166913',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/EwJKRhXXIAAMnwp.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EwJKRhXXIAAMnwp.jpg',
     'url': 'https://t.co/R0AYaTbkTV',
     'display_url': 'pic.twitter.com/R0AYaTbkTV',
     'expanded_url': 'https://twitter.com/WhiteHouse/status/1369738906925694979/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1369738906925694979,
     'source_status_id_str': '1369738906925694979',
     'source_user_id': 1323730225067339784,
     'source_user_id_str': '1323730225067339784'}]},
  'extended_entities': {'media': [{'id': 1369738836176166913,
     'id_str': '1369738836176166913',
     'indices': [106, 129],
     'media_url': 'http://pbs.twimg.com/media/EwJKRhXXIAAMnwp.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/EwJKRhXXIAAMnwp.jpg',
     'url': 'https://t.co/R0AYaTbkTV',
     'display_url': 'pic.twitter.com/R0AYaTbkTV',
     'expanded_url': 'https://twitter.com/WhiteHouse/status/1369738906925694979/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1369738906925694979,
     'source_status_id_str': '1369738906925694979',
     'source_user_id': 1323730225067339784,
     'source_user_id_str': '1323730225067339784',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 38413,
      'variants': [{'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1369738836176166913/vid/540x540/EIpkcX8dybDDUe1a.mp4?tag=14'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1369738836176166913/vid/720x720/4CN2GdCiJRkWwtw2.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1369738836176166913/pl/V7PM19ya955wG04u.m3u8?tag=14'},
       {'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1369738836176166913/vid/320x320/HzBS0E3SPZYY-I3k.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1323730225067339784,
       'id_str': '1323730225067339784',
       'name': 'The White House',
       'screen_name': 'WhiteHouse',
       'location': 'United States of America',
       'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
       'url': 'https://t.co/121St65y97',
       'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [65, 88]}]}},
       'protected': False,
       'followers_count': 7028902,
       'friends_count': 5,
       'listed_count': 10675,
       'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3512,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 10 19:56:18 +0000 2021',
   'id': 1369738906925694979,
   'id_str': '1369738906925694979',
   'full_text': 'From $1,400 checks and unemployment relief to vaccines for every American — help is here. https://t.co/R0AYaTbkTV',
   'truncated': False,
   'display_text_range': [0, 89],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1369738836176166913,
      'id_str': '1369738836176166913',
      'indices': [90, 113],
      'media_url': 'http://pbs.twimg.com/media/EwJKRhXXIAAMnwp.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwJKRhXXIAAMnwp.jpg',
      'url': 'https://t.co/R0AYaTbkTV',
      'display_url': 'pic.twitter.com/R0AYaTbkTV',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1369738906925694979/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1369738836176166913,
      'id_str': '1369738836176166913',
      'indices': [90, 113],
      'media_url': 'http://pbs.twimg.com/media/EwJKRhXXIAAMnwp.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwJKRhXXIAAMnwp.jpg',
      'url': 'https://t.co/R0AYaTbkTV',
      'display_url': 'pic.twitter.com/R0AYaTbkTV',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1369738906925694979/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 38413,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1369738836176166913/vid/540x540/EIpkcX8dybDDUe1a.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1369738836176166913/vid/720x720/4CN2GdCiJRkWwtw2.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1369738836176166913/pl/V7PM19ya955wG04u.m3u8?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1369738836176166913/vid/320x320/HzBS0E3SPZYY-I3k.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3048,
   'favorite_count': 18076,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3048,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 10 19:58:45 +0000 2021',
  'id': 1369739522263617539,
  'id_str': '1369739522263617539',
  'full_text': 'RT @POTUS: Help is here. https://t.co/urZCiigeS1',
  'truncated': False,
  'display_text_range': [0, 48],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [{'url': 'https://t.co/urZCiigeS1',
     'expanded_url': 'https://twitter.com/WhiteHouse/status/1369728897940619273',
     'display_url': 'twitter.com/WhiteHouse/sta…',
     'indices': [25, 48]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 10 19:18:19 +0000 2021',
   'id': 1369729349272866822,
   'id_str': '1369729349272866822',
   'full_text': 'Help is here. https://t.co/urZCiigeS1',
   'truncated': False,
   'display_text_range': [0, 13],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/urZCiigeS1',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1369728897940619273',
      'display_url': 'twitter.com/WhiteHouse/sta…',
      'indices': [14, 37]}]},
   'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': True,
   'quoted_status_id': 1369728897940619273,
   'quoted_status_id_str': '1369728897940619273',
   'quoted_status_permalink': {'url': 'https://t.co/urZCiigeS1',
    'expanded': 'https://twitter.com/WhiteHouse/status/1369728897940619273',
    'display': 'twitter.com/WhiteHouse/sta…'},
   'quoted_status': {'created_at': 'Wed Mar 10 19:16:32 +0000 2021',
    'id': 1369728897940619273,
    'id_str': '1369728897940619273',
    'full_text': 'Big news: Congress just passed President Biden’s American Rescue Plan – a historic legislative package that will turn the page on this pandemic, deliver direct relief to Americans, and jumpstart our economy.',
    'truncated': False,
    'display_text_range': [0, 207],
    'entities': {'hashtags': [],
     'symbols': [],
     'user_mentions': [],
     'urls': []},
    'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'in_reply_to_screen_name': None,
    'user': {'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'name': 'The White House',
     'screen_name': 'WhiteHouse',
     'location': 'United States of America',
     'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
     'url': 'https://t.co/121St65y97',
     'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
         'expanded_url': 'http://WhiteHouse.gov',
         'display_url': 'WhiteHouse.gov',
         'indices': [0, 23]}]},
      'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
         'expanded_url': 'http://whitehouse.gov/privacy',
         'display_url': 'whitehouse.gov/privacy',
         'indices': [65, 88]}]}},
     'protected': False,
     'followers_count': 7028902,
     'friends_count': 5,
     'listed_count': 10675,
     'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
     'favourites_count': 0,
     'utc_offset': None,
     'time_zone': None,
     'geo_enabled': False,
     'verified': True,
     'statuses_count': 3512,
     'lang': None,
     'contributors_enabled': False,
     'is_translator': False,
     'is_translation_enabled': False,
     'profile_background_color': 'F5F8FA',
     'profile_background_image_url': None,
     'profile_background_image_url_https': None,
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'has_extended_profile': True,
     'default_profile': True,
     'default_profile_image': False,
     'following': False,
     'follow_request_sent': False,
     'notifications': False,
     'translator_type': 'none',
     'withheld_in_countries': []},
    'geo': None,
    'coordinates': None,
    'place': None,
    'contributors': None,
    'is_quote_status': False,
    'retweet_count': 8281,
    'favorite_count': 64210,
    'favorited': False,
    'retweeted': False,
    'lang': 'en'},
   'retweet_count': 9257,
   'favorite_count': 72041,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': True,
  'quoted_status_id': 1369728897940619273,
  'quoted_status_id_str': '1369728897940619273',
  'quoted_status_permalink': {'url': 'https://t.co/urZCiigeS1',
   'expanded': 'https://twitter.com/WhiteHouse/status/1369728897940619273',
   'display': 'twitter.com/WhiteHouse/sta…'},
  'retweet_count': 9257,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 10 15:09:16 +0000 2021',
  'id': 1369666671380692994,
  'id_str': '1369666671380692994',
  'full_text': 'RT @POTUS: Keep the faith, folks. We will get through this. https://t.co/AMlyu4pU6M',
  'truncated': False,
  'display_text_range': [0, 83],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1369647740930711558,
     'id_str': '1369647740930711558',
     'indices': [60, 83],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1369647740930711558/img/On1kzpBZfthrg1-a.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1369647740930711558/img/On1kzpBZfthrg1-a.jpg',
     'url': 'https://t.co/AMlyu4pU6M',
     'display_url': 'pic.twitter.com/AMlyu4pU6M',
     'expanded_url': 'https://twitter.com/POTUS/status/1369647791774068739/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'large': {'w': 1280, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1369647791774068739,
     'source_status_id_str': '1369647791774068739',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1369647740930711558,
     'id_str': '1369647740930711558',
     'indices': [60, 83],
     'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1369647740930711558/img/On1kzpBZfthrg1-a.jpg',
     'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1369647740930711558/img/On1kzpBZfthrg1-a.jpg',
     'url': 'https://t.co/AMlyu4pU6M',
     'display_url': 'pic.twitter.com/AMlyu4pU6M',
     'expanded_url': 'https://twitter.com/POTUS/status/1369647791774068739/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
      'small': {'w': 680, 'h': 383, 'resize': 'fit'},
      'large': {'w': 1280, 'h': 720, 'resize': 'fit'}},
     'source_status_id': 1369647791774068739,
     'source_status_id_str': '1369647791774068739',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [16, 9],
      'duration_millis': 8717,
      'variants': [{'bitrate': 2176000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1369647740930711558/vid/1280x720/sQk0PW_sQR1iAnUO.mp4?tag=14'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1369647740930711558/pl/BOVV17FAr-PpTAH3.m3u8?tag=14'},
       {'bitrate': 288000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1369647740930711558/vid/480x270/kEs4pHW5wNeSVTE8.mp4?tag=14'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1369647740930711558/vid/640x360/cAaLSXTXrMvne4do.mp4?tag=14'}]},
     'additional_media_info': {'title': '',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004750,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 10 13:54:15 +0000 2021',
   'id': 1369647791774068739,
   'id_str': '1369647791774068739',
   'full_text': 'Keep the faith, folks. We will get through this. https://t.co/AMlyu4pU6M',
   'truncated': False,
   'display_text_range': [0, 48],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1369647740930711558,
      'id_str': '1369647740930711558',
      'indices': [49, 72],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1369647740930711558/img/On1kzpBZfthrg1-a.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1369647740930711558/img/On1kzpBZfthrg1-a.jpg',
      'url': 'https://t.co/AMlyu4pU6M',
      'display_url': 'pic.twitter.com/AMlyu4pU6M',
      'expanded_url': 'https://twitter.com/POTUS/status/1369647791774068739/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 1280, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1369647740930711558,
      'id_str': '1369647740930711558',
      'indices': [49, 72],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1369647740930711558/img/On1kzpBZfthrg1-a.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1369647740930711558/img/On1kzpBZfthrg1-a.jpg',
      'url': 'https://t.co/AMlyu4pU6M',
      'display_url': 'pic.twitter.com/AMlyu4pU6M',
      'expanded_url': 'https://twitter.com/POTUS/status/1369647791774068739/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1200, 'h': 675, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 1280, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 8717,
       'variants': [{'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1369647740930711558/vid/1280x720/sQk0PW_sQR1iAnUO.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1369647740930711558/pl/BOVV17FAr-PpTAH3.m3u8?tag=14'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1369647740930711558/vid/480x270/kEs4pHW5wNeSVTE8.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1369647740930711558/vid/640x360/cAaLSXTXrMvne4do.mp4?tag=14'}]},
      'additional_media_info': {'title': '',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5123,
   'favorite_count': 42062,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5123,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 09 21:32:10 +0000 2021',
  'id': 1369400644382101510,
  'id_str': '1369400644382101510',
  'full_text': 'RT @POTUS: I want every child to know that this is what vice presidents and generals in the United States Armed Forces look like. https://t…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 09 20:35:01 +0000 2021',
   'id': 1369386260964532225,
   'id_str': '1369386260964532225',
   'full_text': 'I want every child to know that this is what vice presidents and generals in the United States Armed Forces look like. https://t.co/y2OFL1z29r',
   'truncated': False,
   'display_text_range': [0, 118],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1369386259240599565,
      'id_str': '1369386259240599565',
      'indices': [119, 142],
      'media_url': 'http://pbs.twimg.com/media/EwEJjCZWQA0E8y1.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwEJjCZWQA0E8y1.jpg',
      'url': 'https://t.co/y2OFL1z29r',
      'display_url': 'pic.twitter.com/y2OFL1z29r',
      'expanded_url': 'https://twitter.com/POTUS/status/1369386260964532225/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1369386259240599565,
      'id_str': '1369386259240599565',
      'indices': [119, 142],
      'media_url': 'http://pbs.twimg.com/media/EwEJjCZWQA0E8y1.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EwEJjCZWQA0E8y1.jpg',
      'url': 'https://t.co/y2OFL1z29r',
      'display_url': 'pic.twitter.com/y2OFL1z29r',
      'expanded_url': 'https://twitter.com/POTUS/status/1369386260964532225/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 29610,
   'favorite_count': 202789,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 29610,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 09 18:35:14 +0000 2021',
  'id': 1369356116795285511,
  'id_str': '1369356116795285511',
  'full_text': 'RT @POTUS: I believe every worker deserves a free and fair choice to join a union — and the PRO Act will bring us closer to that reality. I…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 09 17:36:00 +0000 2021',
   'id': 1369341211039961095,
   'id_str': '1369341211039961095',
   'full_text': 'I believe every worker deserves a free and fair choice to join a union — and the PRO Act will bring us closer to that reality. I urge Congress to send it to my desk so we can summon a new wave of worker power and create an economy that works for everyone.',
   'truncated': False,
   'display_text_range': [0, 255],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7064,
   'favorite_count': 50314,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7064,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 08 22:18:59 +0000 2021',
  'id': 1369050036336726018,
  'id_str': '1369050036336726018',
  'full_text': 'RT @VP: On this #InternationalWomensDay, I want to honor the women who for over a year have gone to work, often risking their health, to no…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [{'text': 'InternationalWomensDay',
     'indices': [16, 39]}],
   'symbols': [],
   'user_mentions': [{'screen_name': 'VP',
     'name': 'Vice President Kamala Harris',
     'id': 803694179079458816,
     'id_str': '803694179079458816',
     'indices': [3, 6]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 08 19:43:39 +0000 2021',
   'id': 1369010945738047498,
   'id_str': '1369010945738047498',
   'full_text': 'On this #InternationalWomensDay, I want to honor the women who for over a year have gone to work, often risking their health, to nourish and protect us—the doctors, nurses, teachers, grocery store workers, first responders, members of the military, scientists, and many more.',
   'truncated': False,
   'display_text_range': [0, 275],
   'entities': {'hashtags': [{'text': 'InternationalWomensDay',
      'indices': [8, 31]}],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 803694179079458816,
    'id_str': '803694179079458816',
    'name': 'Vice President Kamala Harris',
    'screen_name': 'VP',
    'location': '',
    'description': 'Vice President of the United States. Wife to the first @SecondGentleman. Momala. Auntie. Fighting for the people.',
    'url': 'https://t.co/vbwTCDuFie',
    'entities': {'url': {'urls': [{'url': 'https://t.co/vbwTCDuFie',
        'expanded_url': 'http://whitehouse.gov',
        'display_url': 'whitehouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 12794155,
    'friends_count': 6,
    'listed_count': 16039,
    'created_at': 'Tue Nov 29 20:16:39 +0000 2016',
    'favourites_count': 1111,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 7376,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380657780865044480/BBxmnji2_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380657780865044480/BBxmnji2_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/803694179079458816/1651457062',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': False,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7527,
   'favorite_count': 61035,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7527,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 08 15:35:18 +0000 2021',
  'id': 1368948449182425091,
  'id_str': '1368948449182425091',
  'full_text': 'RT @WhiteHouse: Last week, the Biden-Harris Administration: \n\n- Began administering the single-dose Johnson &amp; Johnson vaccine\n- Secured eno…',
  'truncated': False,
  'display_text_range': [0, 144],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 08 15:15:42 +0000 2021',
   'id': 1368943515250679809,
   'id_str': '1368943515250679809',
   'full_text': 'Last week, the Biden-Harris Administration: \n\n- Began administering the single-dose Johnson &amp; Johnson vaccine\n- Secured enough vaccines for every American by the end of May\n- Increased weekly vaccine shipments to 18 million doses\n\nWe’re working hard to quickly vaccinate America.',
   'truncated': False,
   'display_text_range': [0, 283],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3425,
   'favorite_count': 24976,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3425,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Mar 07 16:53:11 +0000 2021',
  'id': 1368605658900271108,
  'id_str': '1368605658900271108',
  'full_text': 'RT @POTUS: The legacy of Selma is that while nothing can stop free people from exercising their most sacred power as citizens, there are th…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Mar 07 16:43:11 +0000 2021',
   'id': 1368603143639101448,
   'id_str': '1368603143639101448',
   'full_text': 'The legacy of Selma is that while nothing can stop free people from exercising their most sacred power as citizens, there are those who will do anything they can to take that power away. As we reflect on the anniversary of Bloody Sunday, we must stay focused on the work ahead. https://t.co/DDn1LFfqmi',
   'truncated': False,
   'display_text_range': [0, 277],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1368602884598808578,
      'id_str': '1368602884598808578',
      'indices': [278, 301],
      'media_url': 'http://pbs.twimg.com/media/Ev5BTdMWgAISYIa.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ev5BTdMWgAISYIa.jpg',
      'url': 'https://t.co/DDn1LFfqmi',
      'display_url': 'pic.twitter.com/DDn1LFfqmi',
      'expanded_url': 'https://twitter.com/POTUS/status/1368603143639101448/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1368602884598808578,
      'id_str': '1368602884598808578',
      'indices': [278, 301],
      'media_url': 'http://pbs.twimg.com/media/Ev5BTdMWgAISYIa.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Ev5BTdMWgAISYIa.jpg',
      'url': 'https://t.co/DDn1LFfqmi',
      'display_url': 'pic.twitter.com/DDn1LFfqmi',
      'expanded_url': 'https://twitter.com/POTUS/status/1368603143639101448/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 240949,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1368602884598808578/vid/720x720/-LTXYSIwkBQRLYpQ.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1368602884598808578/pl/9RV9VuV4pNOTaNtO.m3u8?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1368602884598808578/vid/320x320/KkFFhRDytFeyfDdU.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1368602884598808578/vid/540x540/RnEv9ILqbFT6yRln.mp4?tag=14'}]},
      'additional_media_info': {'title': 'President Biden Marks The 56th Anniversary Of Bloody Sunday',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6200,
   'favorite_count': 34170,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6200,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 06 19:52:39 +0000 2021',
  'id': 1368288435384049677,
  'id_str': '1368288435384049677',
  'full_text': "RT @POTUS: When I took office, I promised help was on the way. Thanks to @SenSchumer and Senate Democrats, we've taken one more giant step…",
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'SenSchumer',
     'name': 'Chuck Schumer',
     'id': 17494010,
     'id_str': '17494010',
     'indices': [73, 84]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Mar 06 19:27:50 +0000 2021',
   'id': 1368282189734043650,
   'id_str': '1368282189734043650',
   'full_text': "When I took office, I promised help was on the way. Thanks to @SenSchumer and Senate Democrats, we've taken one more giant step forward in delivering on that promise.\n\nI hope the American Rescue Plan receives a quick passage in the House so it can be sent to my desk to be signed.",
   'truncated': False,
   'display_text_range': [0, 280],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'SenSchumer',
      'name': 'Chuck Schumer',
      'id': 17494010,
      'id_str': '17494010',
      'indices': [62, 73]}],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9805,
   'favorite_count': 84894,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9805,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Mar 06 16:56:40 +0000 2021',
  'id': 1368244150223667203,
  'id_str': '1368244150223667203',
  'full_text': 'RT @WhiteHouse: Tammy is a health care professional and single mother of four children — and like countless other Americans, she’s struggli…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Mar 06 16:54:39 +0000 2021',
   'id': 1368243640787734537,
   'id_str': '1368243640787734537',
   'full_text': 'Tammy is a health care professional and single mother of four children — and like countless other Americans, she’s struggling to get through this crisis. President Biden called to discuss the American Rescue Plan and how it will provide direct relief to families like hers. https://t.co/lGmTw5fPUO',
   'truncated': False,
   'display_text_range': [0, 273],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1368243530485923842,
      'id_str': '1368243530485923842',
      'indices': [274, 297],
      'media_url': 'http://pbs.twimg.com/media/Evz6VrCXcAMN1WC.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Evz6VrCXcAMN1WC.jpg',
      'url': 'https://t.co/lGmTw5fPUO',
      'display_url': 'pic.twitter.com/lGmTw5fPUO',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1368243640787734537/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1368243530485923842,
      'id_str': '1368243530485923842',
      'indices': [274, 297],
      'media_url': 'http://pbs.twimg.com/media/Evz6VrCXcAMN1WC.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Evz6VrCXcAMN1WC.jpg',
      'url': 'https://t.co/lGmTw5fPUO',
      'display_url': 'pic.twitter.com/lGmTw5fPUO',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1368243640787734537/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 190649,
       'variants': [{'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1368243530485923842/pl/_qSg1JtL6aH91mlo.m3u8?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1368243530485923842/vid/540x540/OEBhxGJxVqIKMtM1.mp4?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1368243530485923842/vid/720x720/-e3sVk9YdhiYk6r5.mp4?tag=14'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1368243530485923842/vid/320x320/zHu_swXiSHdEHHp0.mp4?tag=14'}]},
      'additional_media_info': {'title': 'A Weekly Conversation: On the Line With Tammy',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1386,
   'favorite_count': 8980,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1386,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Mar 05 20:06:03 +0000 2021',
  'id': 1367929419038351360,
  'id_str': '1367929419038351360',
  'full_text': 'RT @POTUS: With the Johnson &amp; Johnson vaccine, we now have a third safe and effective COVID-19 vaccine being administered across the countr…',
  'truncated': False,
  'display_text_range': [0, 144],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Mar 05 19:57:54 +0000 2021',
   'id': 1367927368501899272,
   'id_str': '1367927368501899272',
   'full_text': 'With the Johnson &amp; Johnson vaccine, we now have a third safe and effective COVID-19 vaccine being administered across the country. I’m grateful these folks are stepping up and getting vaccinated — and I encourage every American to do the same when it’s their turn. https://t.co/n6Xs8TyS6C',
   'truncated': False,
   'display_text_range': [0, 268],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1367927285869928448,
      'id_str': '1367927285869928448',
      'indices': [269, 292],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1367927285869928448/img/lUXj-4V9DPpjyyOd.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1367927285869928448/img/lUXj-4V9DPpjyyOd.jpg',
      'url': 'https://t.co/n6Xs8TyS6C',
      'display_url': 'pic.twitter.com/n6Xs8TyS6C',
      'expanded_url': 'https://twitter.com/POTUS/status/1367927368501899272/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1367927285869928448,
      'id_str': '1367927285869928448',
      'indices': [269, 292],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1367927285869928448/img/lUXj-4V9DPpjyyOd.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1367927285869928448/img/lUXj-4V9DPpjyyOd.jpg',
      'url': 'https://t.co/n6Xs8TyS6C',
      'display_url': 'pic.twitter.com/n6Xs8TyS6C',
      'expanded_url': 'https://twitter.com/POTUS/status/1367927368501899272/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 74783,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1367927285869928448/vid/320x320/3lZUnYhLgF3yf_13.mp4?tag=14'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1367927285869928448/pl/yjBFvEbB5pTAktIC.m3u8?tag=14'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1367927285869928448/vid/720x720/quX_0kMXKd9578NC.mp4?tag=14'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1367927285869928448/vid/540x540/zV3Cu1gD8QlNFpza.mp4?tag=14'}]},
      'additional_media_info': {'title': 'J&J Vaccine Distribution',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2857,
   'favorite_count': 21366,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2857,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Mar 04 19:52:05 +0000 2021',
  'id': 1367563517247827968,
  'id_str': '1367563517247827968',
  'full_text': 'RT @POTUS: The right to vote is sacred and fundamental — and H.R. 1 is urgently needed to protect that right, to safeguard the integrity of…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Mar 04 19:48:42 +0000 2021',
   'id': 1367562666529738760,
   'id_str': '1367562666529738760',
   'full_text': 'The right to vote is sacred and fundamental — and H.R. 1 is urgently needed to protect that right, to safeguard the integrity of our elections, and to repair and strengthen our democracy. I look forward to signing it into law after it has passed through the legislative process.',
   'truncated': False,
   'display_text_range': [0, 278],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10925,
   'favorite_count': 74829,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10925,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 03 21:48:07 +0000 2021',
  'id': 1367230331187650563,
  'id_str': '1367230331187650563',
  'full_text': 'RT @WhiteHouse: In the two weeks since the Biden-Harris Administration opened a special enrollment period for health insurance, over 200,00…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 03 19:30:00 +0000 2021',
   'id': 1367195573363826690,
   'id_str': '1367195573363826690',
   'full_text': 'In the two weeks since the Biden-Harris Administration opened a special enrollment period for health insurance, over 200,000 Americans have gotten covered. Join them and head to https://t.co/Z1ZSzQNxNn to sign up today.',
   'truncated': False,
   'display_text_range': [0, 219],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/Z1ZSzQNxNn',
      'expanded_url': 'http://HealthCare.gov',
      'display_url': 'HealthCare.gov',
      'indices': [178, 201]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2552,
   'favorite_count': 14734,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2552,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Mar 03 14:43:25 +0000 2021',
  'id': 1367123450528202760,
  'id_str': '1367123450528202760',
  'full_text': 'RT @POTUS: An educator is leading the Department of Education once again. I look forward to working with @SecCardona to safely reopen our n…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'SecCardona',
     'name': 'Secretary Miguel Cardona',
     'id': 1364259892299767810,
     'id_str': '1364259892299767810',
     'indices': [105, 116]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Mar 03 14:32:00 +0000 2021',
   'id': 1367120577492885506,
   'id_str': '1367120577492885506',
   'full_text': 'An educator is leading the Department of Education once again. I look forward to working with @SecCardona to safely reopen our nation’s schools and ensure every child has access to a quality education. https://t.co/5wO9lpR4ct',
   'truncated': False,
   'display_text_range': [0, 201],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'SecCardona',
      'name': 'Secretary Miguel Cardona',
      'id': 1364259892299767810,
      'id_str': '1364259892299767810',
      'indices': [94, 105]}],
    'urls': [{'url': 'https://t.co/5wO9lpR4ct',
      'expanded_url': 'https://twitter.com/SecCardona/status/1366906579526762496',
      'display_url': 'twitter.com/SecCardona/sta…',
      'indices': [202, 225]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': True,
   'quoted_status_id': 1366906579526762496,
   'quoted_status_id_str': '1366906579526762496',
   'quoted_status_permalink': {'url': 'https://t.co/5wO9lpR4ct',
    'expanded': 'https://twitter.com/SecCardona/status/1366906579526762496',
    'display': 'twitter.com/SecCardona/sta…'},
   'quoted_status': {'created_at': 'Wed Mar 03 00:21:39 +0000 2021',
    'id': 1366906579526762496,
    'id_str': '1366906579526762496',
    'full_text': "We need a Department of Education that is focused first and foremost on our students. My commitment to you is that the agency I lead will be a service agency and our mission will be the success of America's students. https://t.co/OkPc6TBbTC",
    'truncated': False,
    'display_text_range': [0, 216],
    'entities': {'hashtags': [],
     'symbols': [],
     'user_mentions': [],
     'urls': [],
     'media': [{'id': 1366905878889312262,
       'id_str': '1366905878889312262',
       'indices': [217, 240],
       'media_url': 'http://pbs.twimg.com/media/Evg5p5iXMAYWDeK.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/Evg5p5iXMAYWDeK.jpg',
       'url': 'https://t.co/OkPc6TBbTC',
       'display_url': 'pic.twitter.com/OkPc6TBbTC',
       'expanded_url': 'https://twitter.com/SecCardona/status/1366906579526762496/photo/1',
       'type': 'photo',
       'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
        'small': {'w': 680, 'h': 453, 'resize': 'fit'},
        'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
        'large': {'w': 2048, 'h': 1366, 'resize': 'fit'}}}]},
    'extended_entities': {'media': [{'id': 1366905878889312262,
       'id_str': '1366905878889312262',
       'indices': [217, 240],
       'media_url': 'http://pbs.twimg.com/media/Evg5p5iXMAYWDeK.jpg',
       'media_url_https': 'https://pbs.twimg.com/media/Evg5p5iXMAYWDeK.jpg',
       'url': 'https://t.co/OkPc6TBbTC',
       'display_url': 'pic.twitter.com/OkPc6TBbTC',
       'expanded_url': 'https://twitter.com/SecCardona/status/1366906579526762496/photo/1',
       'type': 'photo',
       'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
        'small': {'w': 680, 'h': 453, 'resize': 'fit'},
        'medium': {'w': 1200, 'h': 800, 'resize': 'fit'},
        'large': {'w': 2048, 'h': 1366, 'resize': 'fit'}}}]},
    'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
    'in_reply_to_status_id': None,
    'in_reply_to_status_id_str': None,
    'in_reply_to_user_id': None,
    'in_reply_to_user_id_str': None,
    'in_reply_to_screen_name': None,
    'user': {'id': 1364259892299767810,
     'id_str': '1364259892299767810',
     'name': 'Secretary Miguel Cardona',
     'screen_name': 'SecCardona',
     'location': 'Washington, D.C.',
     'description': 'Official account for the 12th Secretary of Education. En la unión está la fuerza. In unity there is strength. Lifelong educator, husband, and father of two.',
     'url': 'https://t.co/jeILiayL97',
     'entities': {'url': {'urls': [{'url': 'https://t.co/jeILiayL97',
         'expanded_url': 'http://www.ed.gov',
         'display_url': 'ed.gov',
         'indices': [0, 23]}]},
      'description': {'urls': []}},
     'protected': False,
     'followers_count': 73683,
     'friends_count': 115,
     'listed_count': 581,
     'created_at': 'Tue Feb 23 17:05:14 +0000 2021',
     'favourites_count': 159,
     'utc_offset': None,
     'time_zone': None,
     'geo_enabled': False,
     'verified': True,
     'statuses_count': 2208,
     'lang': None,
     'contributors_enabled': False,
     'is_translator': False,
     'is_translation_enabled': False,
     'profile_background_color': 'F5F8FA',
     'profile_background_image_url': None,
     'profile_background_image_url_https': None,
     'profile_background_tile': False,
     'profile_image_url': 'http://pbs.twimg.com/profile_images/1418655417224286225/mBNllP6d_normal.jpg',
     'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1418655417224286225/mBNllP6d_normal.jpg',
     'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1364259892299767810/1651261361',
     'profile_link_color': '1DA1F2',
     'profile_sidebar_border_color': 'C0DEED',
     'profile_sidebar_fill_color': 'DDEEF6',
     'profile_text_color': '333333',
     'profile_use_background_image': True,
     'has_extended_profile': True,
     'default_profile': True,
     'default_profile_image': False,
     'following': False,
     'follow_request_sent': False,
     'notifications': False,
     'translator_type': 'none',
     'withheld_in_countries': []},
    'geo': None,
    'coordinates': None,
    'place': None,
    'contributors': None,
    'is_quote_status': False,
    'retweet_count': 704,
    'favorite_count': 7706,
    'favorited': False,
    'retweeted': False,
    'possibly_sensitive': False,
    'lang': 'en'},
   'retweet_count': 3440,
   'favorite_count': 28259,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': True,
  'quoted_status_id': 1366906579526762496,
  'quoted_status_id_str': '1366906579526762496',
  'quoted_status_permalink': {'url': 'https://t.co/5wO9lpR4ct',
   'expanded': 'https://twitter.com/SecCardona/status/1366906579526762496',
   'display': 'twitter.com/SecCardona/sta…'},
  'retweet_count': 3440,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 02 22:14:30 +0000 2021',
  'id': 1366874583001927680,
  'id_str': '1366874583001927680',
  'full_text': 'RT @WhiteHouse: Today, President Biden announced a breakthrough collaboration between Johnson &amp; Johnson, Merck, and the federal government…',
  'truncated': False,
  'display_text_range': [0, 143],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 02 21:30:00 +0000 2021',
   'id': 1366863383094562818,
   'id_str': '1366863383094562818',
   'full_text': 'Today, President Biden announced a breakthrough collaboration between Johnson &amp; Johnson, Merck, and the federal government to ramp up vaccine production. Because of these efforts, we will have enough vaccines for every American by the end of May–two months earlier than expected.',
   'truncated': False,
   'display_text_range': [0, 283],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028902,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5910,
   'favorite_count': 48590,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5910,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 02 21:46:55 +0000 2021',
  'id': 1366867642783576078,
  'id_str': '1366867642783576078',
  'full_text': 'RT @POTUS: Today, I am directing every state to prioritize educators for vaccination. We want every educator, school staff member, and chil…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 02 21:31:57 +0000 2021',
   'id': 1366863876206264327,
   'id_str': '1366863876206264327',
   'full_text': 'Today, I am directing every state to prioritize educators for vaccination. We want every educator, school staff member, and child-care worker to receive at least one shot by the end of this month.\n\nIt’s time to treat in-person learning like the essential service that it is.',
   'truncated': False,
   'display_text_range': [0, 274],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 15927,
   'favorite_count': 100673,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 15927,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 02 18:36:24 +0000 2021',
  'id': 1366819696515964930,
  'id_str': '1366819696515964930',
  'full_text': 'RT @POTUS: The fact is that $600 is not enough. The Senate needs to pass the American Rescue Plan and finish the job of delivering $2,000 i…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 02 18:08:00 +0000 2021',
   'id': 1366812548088086532,
   'id_str': '1366812548088086532',
   'full_text': 'The fact is that $600 is not enough. The Senate needs to pass the American Rescue Plan and finish the job of delivering $2,000 in direct relief.',
   'truncated': False,
   'display_text_range': [0, 144],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 9936,
   'favorite_count': 85842,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 9936,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Mar 02 03:09:06 +0000 2021',
  'id': 1366586334257807367,
  'id_str': '1366586334257807367',
  'full_text': 'RT @POTUS: Wash your hands.\nStay socially distanced.\nWear a mask.\nGet vaccinated when it’s your turn.\n\nDespite our progress, we can’t let o…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Mar 02 01:15:00 +0000 2021',
   'id': 1366557618026774534,
   'id_str': '1366557618026774534',
   'full_text': 'Wash your hands.\nStay socially distanced.\nWear a mask.\nGet vaccinated when it’s your turn.\n\nDespite our progress, we can’t let our guard down.',
   'truncated': False,
   'display_text_range': [0, 142],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 14170,
   'favorite_count': 112812,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 14170,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 01 20:00:57 +0000 2021',
  'id': 1366478587122110466,
  'id_str': '1366478587122110466',
  'full_text': 'RT @POTUS: No child in America should go hungry. The American Rescue Plan will extend and invest in critical food programs to help ensure e…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Mar 01 16:55:01 +0000 2021',
   'id': 1366431794120302593,
   'id_str': '1366431794120302593',
   'full_text': 'No child in America should go hungry. The American Rescue Plan will extend and invest in critical food programs to help ensure every family gets the food they need. https://t.co/DlKYDM6bOM',
   'truncated': False,
   'display_text_range': [0, 164],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1366431792111247365,
      'id_str': '1366431792111247365',
      'indices': [165, 188],
      'media_url': 'http://pbs.twimg.com/media/EvaKeaqXYAUp0UE.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvaKeaqXYAUp0UE.jpg',
      'url': 'https://t.co/DlKYDM6bOM',
      'display_url': 'pic.twitter.com/DlKYDM6bOM',
      'expanded_url': 'https://twitter.com/POTUS/status/1366431794120302593/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1366431792111247365,
      'id_str': '1366431792111247365',
      'indices': [165, 188],
      'media_url': 'http://pbs.twimg.com/media/EvaKeaqXYAUp0UE.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvaKeaqXYAUp0UE.jpg',
      'url': 'https://t.co/DlKYDM6bOM',
      'display_url': 'pic.twitter.com/DlKYDM6bOM',
      'expanded_url': 'https://twitter.com/POTUS/status/1366431794120302593/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004750,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3600,
   'favorite_count': 23594,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3600,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Mar 01 16:00:09 +0000 2021',
  'id': 1366417985649442821,
  'id_str': '1366417985649442821',
  'full_text': 'A campaign for everyone who’s been knocked down or counted out.\n\nA campaign that brought Americans together of every race, ethnicity, gender, economic station, and party.\n\nA year ago, the people of South Carolina lifted that campaign on their shoulders.\nhttps://t.co/YN5LeBMLMe',
  'truncated': False,
  'display_text_range': [0, 277],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [],
   'urls': [{'url': 'https://t.co/YN5LeBMLMe',
     'expanded_url': 'https://medium.com/@JoeBiden/south-carolina-a-year-later-3e88745983cc',
     'display_url': 'medium.com/@JoeBiden/sout…',
     'indices': [254, 277]}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155529,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'is_quote_status': False,
  'retweet_count': 3331,
  'favorite_count': 34830,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 28 18:40:24 +0000 2021',
  'id': 1366095927791001601,
  'id_str': '1366095927791001601',
  'full_text': 'RT @POTUS: The more people that get vaccinated, the faster we will beat this pandemic. That’s why one of my first goals is to administer 10…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Feb 28 18:04:56 +0000 2021',
   'id': 1366087000676331529,
   'id_str': '1366087000676331529',
   'full_text': 'The more people that get vaccinated, the faster we will beat this pandemic. That’s why one of my first goals is to administer 100 million COVID-19 vaccine shots in our first 100 days.\n \nI’m proud to say we’re over halfway to our goal and weeks ahead of schedule.',
   'truncated': False,
   'display_text_range': [0, 262],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 12498,
   'favorite_count': 122687,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 12498,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 28 01:41:28 +0000 2021',
  'id': 1365839504280612864,
  'id_str': '1365839504280612864',
  'full_text': 'RT @POTUS: Yesterday I traveled to Texas to visit an emergency operations center, food bank, and vaccination site. Each stop represented ou…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Feb 28 00:30:02 +0000 2021',
   'id': 1365821525455220737,
   'id_str': '1365821525455220737',
   'full_text': 'Yesterday I traveled to Texas to visit an emergency operations center, food bank, and vaccination site. Each stop represented our nation at its best—people coming together to help their fellow Americans. It’s a reminder that there’s nothing we can’t do when we do it together. https://t.co/6WgPbD0PCx',
   'truncated': False,
   'display_text_range': [0, 276],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1365821518568181763,
      'id_str': '1365821518568181763',
      'indices': [277, 300],
      'media_url': 'http://pbs.twimg.com/media/EvRfb0jXUAM6idi.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvRfb0jXUAM6idi.jpg',
      'url': 'https://t.co/6WgPbD0PCx',
      'display_url': 'pic.twitter.com/6WgPbD0PCx',
      'expanded_url': 'https://twitter.com/POTUS/status/1365821525455220737/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 684, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 684, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1365821518568181763,
      'id_str': '1365821518568181763',
      'indices': [277, 300],
      'media_url': 'http://pbs.twimg.com/media/EvRfb0jXUAM6idi.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvRfb0jXUAM6idi.jpg',
      'url': 'https://t.co/6WgPbD0PCx',
      'display_url': 'pic.twitter.com/6WgPbD0PCx',
      'expanded_url': 'https://twitter.com/POTUS/status/1365821525455220737/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 684, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 684, 'resize': 'fit'}}},
     {'id': 1365821520602419207,
      'id_str': '1365821520602419207',
      'indices': [277, 300],
      'media_url': 'http://pbs.twimg.com/media/EvRfb8IXUAcw4Pa.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvRfb8IXUAcw4Pa.jpg',
      'url': 'https://t.co/6WgPbD0PCx',
      'display_url': 'pic.twitter.com/6WgPbD0PCx',
      'expanded_url': 'https://twitter.com/POTUS/status/1365821525455220737/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 684, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 684, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'}}},
     {'id': 1365821523727159299,
      'id_str': '1365821523727159299',
      'indices': [277, 300],
      'media_url': 'http://pbs.twimg.com/media/EvRfcHxXEAMifKm.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvRfcHxXEAMifKm.jpg',
      'url': 'https://t.co/6WgPbD0PCx',
      'display_url': 'pic.twitter.com/6WgPbD0PCx',
      'expanded_url': 'https://twitter.com/POTUS/status/1365821525455220737/photo/1',
      'type': 'photo',
      'sizes': {'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 7334,
   'favorite_count': 68942,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 7334,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 27 15:31:46 +0000 2021',
  'id': 1365686069149241346,
  'id_str': '1365686069149241346',
  'full_text': 'RT @WhiteHouse: Erica is a nurse in New York City and runs COVID-19 testing at one of the hardest-hit hospitals in the country. President B…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Feb 27 15:30:53 +0000 2021',
   'id': 1365685844166795269,
   'id_str': '1365685844166795269',
   'full_text': 'Erica is a nurse in New York City and runs COVID-19 testing at one of the hardest-hit hospitals in the country. President Biden called her to check in and discuss what the federal government can do to help. Take a look: https://t.co/YVVV45EETy',
   'truncated': False,
   'display_text_range': [0, 219],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1365685647214866435,
      'id_str': '1365685647214866435',
      'indices': [220, 243],
      'media_url': 'http://pbs.twimg.com/media/EvPkCTNXUAIcnrM.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvPkCTNXUAIcnrM.jpg',
      'url': 'https://t.co/YVVV45EETy',
      'display_url': 'pic.twitter.com/YVVV45EETy',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1365685844166795269/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 720, 'h': 405, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 720, 'h': 405, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1365685647214866435,
      'id_str': '1365685647214866435',
      'indices': [220, 243],
      'media_url': 'http://pbs.twimg.com/media/EvPkCTNXUAIcnrM.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvPkCTNXUAIcnrM.jpg',
      'url': 'https://t.co/YVVV45EETy',
      'display_url': 'pic.twitter.com/YVVV45EETy',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1365685844166795269/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 720, 'h': 405, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 720, 'h': 405, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 170879,
       'variants': [{'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1365685647214866435/vid/480x270/dDm7Ka6RKkX7y04h.mp4?tag=13'},
        {'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1365685647214866435/vid/1280x720/41Ld2RFwHd1IuOAJ.mp4?tag=13'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1365685647214866435/vid/640x360/B4HC7Os9a_nq3_ZS.mp4?tag=13'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1365685647214866435/pl/xH9tBBIG3LYRIFvc.m3u8?tag=13'}]},
      'additional_media_info': {'title': 'A Weekly Conversation: On the Line With Erica',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028903,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2013,
   'favorite_count': 13127,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2013,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 26 21:47:10 +0000 2021',
  'id': 1365418153220730883,
  'id_str': '1365418153220730883',
  'full_text': 'RT @POTUS: The week before I took office, 6 million COVID-19 vaccine shots were administered.\n\nThis coming week, our Administration will li…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 26 16:45:00 +0000 2021',
   'id': 1365342110132633604,
   'id_str': '1365342110132633604',
   'full_text': 'The week before I took office, 6 million COVID-19 vaccine shots were administered.\n\nThis coming week, our Administration will likely administer over 12 million shots.\n\nThat’s double the pace in just six weeks.',
   'truncated': False,
   'display_text_range': [0, 209],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8479,
   'favorite_count': 83533,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8479,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 26 15:21:15 +0000 2021',
  'id': 1365321032626802698,
  'id_str': '1365321032626802698',
  'full_text': 'RT @POTUS: COVID-19 vaccinations are up and cases and hospitalizations are down, but let me be clear: now is not the time to relax. https:/…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 26 15:07:05 +0000 2021',
   'id': 1365317466822434819,
   'id_str': '1365317466822434819',
   'full_text': 'COVID-19 vaccinations are up and cases and hospitalizations are down, but let me be clear: now is not the time to relax. https://t.co/oUuHCXl3s7',
   'truncated': False,
   'display_text_range': [0, 120],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1365317398161670144,
      'id_str': '1365317398161670144',
      'indices': [121, 144],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1365317398161670144/img/cKJ0TOONWKxYxuyj.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1365317398161670144/img/cKJ0TOONWKxYxuyj.jpg',
      'url': 'https://t.co/oUuHCXl3s7',
      'display_url': 'pic.twitter.com/oUuHCXl3s7',
      'expanded_url': 'https://twitter.com/POTUS/status/1365317466822434819/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1365317398161670144,
      'id_str': '1365317398161670144',
      'indices': [121, 144],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1365317398161670144/img/cKJ0TOONWKxYxuyj.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1365317398161670144/img/cKJ0TOONWKxYxuyj.jpg',
      'url': 'https://t.co/oUuHCXl3s7',
      'display_url': 'pic.twitter.com/oUuHCXl3s7',
      'expanded_url': 'https://twitter.com/POTUS/status/1365317466822434819/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 50300,
       'variants': [{'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1365317398161670144/vid/720x720/d9-VPoa_96xOlZSC.mp4?tag=13'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1365317398161670144/vid/320x320/wnn4zFbSITLwxrr8.mp4?tag=13'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1365317398161670144/pl/E9NUIUP8U3IiFtD3.m3u8?tag=13'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1365317398161670144/vid/480x480/h1fqhOlNYwUa7IjD.mp4?tag=13'}]},
      'additional_media_info': {'title': 'President Biden Discusses The State Of The Pandemic',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4684,
   'favorite_count': 32878,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4684,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 26 01:51:06 +0000 2021',
  'id': 1365117152760639495,
  'id_str': '1365117152760639495',
  'full_text': "RT @POTUS: Transgender rights are human rights — and the House made that clear today by passing the Equality Act. \n\nNow it's time for the S…",
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 26 01:30:00 +0000 2021',
   'id': 1365111841555382275,
   'id_str': '1365111841555382275',
   'full_text': "Transgender rights are human rights — and the House made that clear today by passing the Equality Act. \n\nNow it's time for the Senate to do the same.",
   'truncated': False,
   'display_text_range': [0, 149],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 20903,
   'favorite_count': 185642,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 20903,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 25 21:36:25 +0000 2021',
  'id': 1365053059496296453,
  'id_str': '1365053059496296453',
  'full_text': 'RT @POTUS: I am pleased that the House will vote next week on the George Floyd Justice in Policing Act. I encourage the House to pass it. F…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Thu Feb 25 17:04:00 +0000 2021',
   'id': 1364984502133657602,
   'id_str': '1364984502133657602',
   'full_text': 'I am pleased that the House will vote next week on the George Floyd Justice in Policing Act. I encourage the House to pass it. Following Senate consideration, I hope to be able to sign into law a landmark police reform bill.',
   'truncated': False,
   'display_text_range': [0, 224],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 10526,
   'favorite_count': 86219,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 10526,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Thu Feb 25 00:06:45 +0000 2021',
  'id': 1364728505586581512,
  'id_str': '1364728505586581512',
  'full_text': 'RT @WhiteHouse: On Friday, President Biden toured a Pfizer manufacturing plant in Michigan to see the vaccine production process firsthand…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'WhiteHouse',
     'name': 'The White House',
     'id': 1323730225067339784,
     'id_str': '1323730225067339784',
     'indices': [3, 14]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Feb 24 23:47:03 +0000 2021',
   'id': 1364723546933633026,
   'id_str': '1364723546933633026',
   'full_text': 'On Friday, President Biden toured a Pfizer manufacturing plant in Michigan to see the vaccine production process firsthand and encourage Americans to get vaccinated when it’s their turn. Take a look: https://t.co/JZeCebn9ZC',
   'truncated': False,
   'display_text_range': [0, 199],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1364723035903696899,
      'id_str': '1364723035903696899',
      'indices': [200, 223],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1364723035903696899/img/JVF6DBfvXhqFwoho.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1364723035903696899/img/JVF6DBfvXhqFwoho.jpg',
      'url': 'https://t.co/JZeCebn9ZC',
      'display_url': 'pic.twitter.com/JZeCebn9ZC',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1364723546933633026/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1364723035903696899,
      'id_str': '1364723035903696899',
      'indices': [200, 223],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1364723035903696899/img/JVF6DBfvXhqFwoho.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1364723035903696899/img/JVF6DBfvXhqFwoho.jpg',
      'url': 'https://t.co/JZeCebn9ZC',
      'display_url': 'pic.twitter.com/JZeCebn9ZC',
      'expanded_url': 'https://twitter.com/WhiteHouse/status/1364723546933633026/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 60060,
       'variants': [{'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1364723035903696899/vid/480x480/JHzJsu_Ori05K1YU.mp4?tag=13'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1364723035903696899/pl/SOAOpBhYcOXhSl8k.m3u8?tag=13'},
        {'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1364723035903696899/vid/320x320/W2l9I_6dKn_m1t4l.mp4?tag=13'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1364723035903696899/vid/720x720/tnndRGMws229JCYu.mp4?tag=13'}]},
      'additional_media_info': {'title': 'President Biden Tours A Pfizer Manufacturing Plant',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1323730225067339784,
    'id_str': '1323730225067339784',
    'name': 'The White House',
    'screen_name': 'WhiteHouse',
    'location': 'United States of America',
    'description': 'Welcome to the Biden-Harris White House! Tweets may be archived: https://t.co/UbZQo0sWVf',
    'url': 'https://t.co/121St65y97',
    'entities': {'url': {'urls': [{'url': 'https://t.co/121St65y97',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/UbZQo0sWVf',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [65, 88]}]}},
    'protected': False,
    'followers_count': 7028903,
    'friends_count': 5,
    'listed_count': 10675,
    'created_at': 'Tue Nov 03 20:55:58 +0000 2020',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3512,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1351938473142448133/JQT93Cjo_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1323730225067339784/1651425118',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 1548,
   'favorite_count': 10281,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 1548,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Feb 24 22:02:29 +0000 2021',
  'id': 1364697232226856968,
  'id_str': '1364697232226856968',
  'full_text': 'RT @POTUS: When I met with Prime Minister @JustinTrudeau in 2016, I said the world needed more leaders like him. A lot has changed since th…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'JustinTrudeau',
     'name': 'Justin Trudeau',
     'id': 14260960,
     'id_str': '14260960',
     'indices': [42, 56]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Feb 24 18:50:01 +0000 2021',
   'id': 1364648795385040907,
   'id_str': '1364648795385040907',
   'full_text': 'When I met with Prime Minister @JustinTrudeau in 2016, I said the world needed more leaders like him. A lot has changed since then, but my sentiment remains the same. I can’t wait to see what we accomplish in the years ahead. https://t.co/jRJH7fpm2R',
   'truncated': False,
   'display_text_range': [0, 225],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'JustinTrudeau',
      'name': 'Justin Trudeau',
      'id': 14260960,
      'id_str': '14260960',
      'indices': [31, 45]}],
    'urls': [],
    'media': [{'id': 1364648793640230922,
      'id_str': '1364648793640230922',
      'indices': [226, 249],
      'media_url': 'http://pbs.twimg.com/media/EvA02PwXYAo4xQ1.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvA02PwXYAo4xQ1.jpg',
      'url': 'https://t.co/jRJH7fpm2R',
      'display_url': 'pic.twitter.com/jRJH7fpm2R',
      'expanded_url': 'https://twitter.com/POTUS/status/1364648795385040907/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1364648793640230922,
      'id_str': '1364648793640230922',
      'indices': [226, 249],
      'media_url': 'http://pbs.twimg.com/media/EvA02PwXYAo4xQ1.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/EvA02PwXYAo4xQ1.jpg',
      'url': 'https://t.co/jRJH7fpm2R',
      'display_url': 'pic.twitter.com/jRJH7fpm2R',
      'expanded_url': 'https://twitter.com/POTUS/status/1364648795385040907/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 683, 'resize': 'fit'},
       'small': {'w': 680, 'h': 454, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 5973,
   'favorite_count': 65132,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 5973,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Wed Feb 24 16:05:58 +0000 2021',
  'id': 1364607509932220425,
  'id_str': '1364607509932220425',
  'full_text': 'RT @POTUS: Small businesses need relief, but many were muscled out of the way by big companies last year. That’s why starting today, we’re…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Wed Feb 24 14:58:41 +0000 2021',
   'id': 1364590577879244802,
   'id_str': '1364590577879244802',
   'full_text': 'Small businesses need relief, but many were muscled out of the way by big companies last year. That’s why starting today, we’re opening an exclusive 14-day loan application period for businesses and nonprofits with fewer than 20 employees.\n\nLearn more: https://t.co/JlLS2kNadK https://t.co/Nn36MTol8E',
   'truncated': False,
   'display_text_range': [0, 276],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/JlLS2kNadK',
      'expanded_url': 'http://www.sba.gov',
      'display_url': 'sba.gov',
      'indices': [253, 276]}],
    'media': [{'id': 1364590576058986498,
      'id_str': '1364590576058986498',
      'indices': [277, 300],
      'media_url': 'http://pbs.twimg.com/media/Eu__5iXXcAIfCbc.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Eu__5iXXcAIfCbc.jpg',
      'url': 'https://t.co/Nn36MTol8E',
      'display_url': 'pic.twitter.com/Nn36MTol8E',
      'expanded_url': 'https://twitter.com/POTUS/status/1364590577879244802/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1364590576058986498,
      'id_str': '1364590576058986498',
      'indices': [277, 300],
      'media_url': 'http://pbs.twimg.com/media/Eu__5iXXcAIfCbc.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Eu__5iXXcAIfCbc.jpg',
      'url': 'https://t.co/Nn36MTol8E',
      'display_url': 'pic.twitter.com/Nn36MTol8E',
      'expanded_url': 'https://twitter.com/POTUS/status/1364590577879244802/photo/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1024, 'h': 577, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'medium': {'w': 1024, 'h': 577, 'resize': 'fit'}}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4248,
   'favorite_count': 22847,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4248,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 23 16:57:17 +0000 2021',
  'id': 1364258039361114113,
  'id_str': '1364258039361114113',
  'full_text': 'RT @JoeBiden: We need a president who is respected on the world stage. https://t.co/Hqv6T06Mtv',
  'truncated': False,
  'display_text_range': [0, 94],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'JoeBiden',
     'name': 'Joe Biden',
     'id': 939091,
     'id_str': '939091',
     'indices': [3, 12]}],
   'urls': [],
   'media': [{'id': 1202760993601990656,
     'id_str': '1202760993601990656',
     'indices': [71, 94],
     'media_url': 'http://pbs.twimg.com/media/ELEQwE1XsAAFahb.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/ELEQwE1XsAAFahb.jpg',
     'url': 'https://t.co/Hqv6T06Mtv',
     'display_url': 'pic.twitter.com/Hqv6T06Mtv',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1202761574332739584/photo/1',
     'type': 'photo',
     'sizes': {'small': {'w': 680, 'h': 477, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1712, 'h': 1201, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 842, 'resize': 'fit'}},
     'source_status_id': 1202761574332739584,
     'source_status_id_str': '1202761574332739584',
     'source_user_id': 939091,
     'source_user_id_str': '939091'}]},
  'extended_entities': {'media': [{'id': 1202760993601990656,
     'id_str': '1202760993601990656',
     'indices': [71, 94],
     'media_url': 'http://pbs.twimg.com/media/ELEQwE1XsAAFahb.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/ELEQwE1XsAAFahb.jpg',
     'url': 'https://t.co/Hqv6T06Mtv',
     'display_url': 'pic.twitter.com/Hqv6T06Mtv',
     'expanded_url': 'https://twitter.com/JoeBiden/status/1202761574332739584/photo/1',
     'type': 'photo',
     'sizes': {'small': {'w': 680, 'h': 477, 'resize': 'fit'},
      'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'large': {'w': 1712, 'h': 1201, 'resize': 'fit'},
      'medium': {'w': 1200, 'h': 842, 'resize': 'fit'}},
     'source_status_id': 1202761574332739584,
     'source_status_id_str': '1202761574332739584',
     'source_user_id': 939091,
     'source_user_id_str': '939091'}]},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Dec 06 01:28:00 +0000 2019',
   'id': 1202761574332739584,
   'id_str': '1202761574332739584',
   'full_text': 'We need a president who is respected on the world stage. https://t.co/Hqv6T06Mtv',
   'truncated': False,
   'display_text_range': [0, 56],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1202760993601990656,
      'id_str': '1202760993601990656',
      'indices': [57, 80],
      'media_url': 'http://pbs.twimg.com/media/ELEQwE1XsAAFahb.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/ELEQwE1XsAAFahb.jpg',
      'url': 'https://t.co/Hqv6T06Mtv',
      'display_url': 'pic.twitter.com/Hqv6T06Mtv',
      'expanded_url': 'https://twitter.com/JoeBiden/status/1202761574332739584/photo/1',
      'type': 'photo',
      'sizes': {'small': {'w': 680, 'h': 477, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1712, 'h': 1201, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 842, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1202760993601990656,
      'id_str': '1202760993601990656',
      'indices': [57, 80],
      'media_url': 'http://pbs.twimg.com/media/ELEQwE1XsAAFahb.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/ELEQwE1XsAAFahb.jpg',
      'url': 'https://t.co/Hqv6T06Mtv',
      'display_url': 'pic.twitter.com/Hqv6T06Mtv',
      'expanded_url': 'https://twitter.com/JoeBiden/status/1202761574332739584/photo/1',
      'type': 'photo',
      'sizes': {'small': {'w': 680, 'h': 477, 'resize': 'fit'},
       'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'large': {'w': 1712, 'h': 1201, 'resize': 'fit'},
       'medium': {'w': 1200, 'h': 842, 'resize': 'fit'}}}]},
   'source': '<a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 939091,
    'id_str': '939091',
    'name': 'Joe Biden',
    'screen_name': 'JoeBiden',
    'location': 'Washington, DC',
    'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
    'url': 'https://t.co/UClrPuJpyZ',
    'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
        'expanded_url': 'http://joebiden.com',
        'display_url': 'joebiden.com',
        'indices': [0, 23]}]},
     'description': {'urls': []}},
    'protected': False,
    'followers_count': 34155528,
    'friends_count': 48,
    'listed_count': 39074,
    'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
    'favourites_count': 20,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 8196,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': '565959',
    'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
    'profile_background_tile': True,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
    'profile_link_color': '233F94',
    'profile_sidebar_border_color': 'FFFFFF',
    'profile_sidebar_fill_color': 'EBEBFF',
    'profile_text_color': '323232',
    'profile_use_background_image': True,
    'has_extended_profile': False,
    'default_profile': False,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 3869,
   'favorite_count': 32155,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 3869,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 23 15:09:05 +0000 2021',
  'id': 1364230807091613700,
  'id_str': '1364230807091613700',
  'full_text': 'RT @POTUS: We will get through this, I promise you. https://t.co/dtmi4C9WsM',
  'truncated': False,
  'display_text_range': [0, 75],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': [],
   'media': [{'id': 1364217936395841537,
     'id_str': '1364217936395841537',
     'indices': [52, 75],
     'media_url': 'http://pbs.twimg.com/media/Eu6tBO-WQAEFu0s.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/Eu6tBO-WQAEFu0s.jpg',
     'url': 'https://t.co/dtmi4C9WsM',
     'display_url': 'pic.twitter.com/dtmi4C9WsM',
     'expanded_url': 'https://twitter.com/POTUS/status/1364217980201091075/video/1',
     'type': 'photo',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1364217980201091075,
     'source_status_id_str': '1364217980201091075',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363'}]},
  'extended_entities': {'media': [{'id': 1364217936395841537,
     'id_str': '1364217936395841537',
     'indices': [52, 75],
     'media_url': 'http://pbs.twimg.com/media/Eu6tBO-WQAEFu0s.jpg',
     'media_url_https': 'https://pbs.twimg.com/media/Eu6tBO-WQAEFu0s.jpg',
     'url': 'https://t.co/dtmi4C9WsM',
     'display_url': 'pic.twitter.com/dtmi4C9WsM',
     'expanded_url': 'https://twitter.com/POTUS/status/1364217980201091075/video/1',
     'type': 'video',
     'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
      'small': {'w': 680, 'h': 680, 'resize': 'fit'},
      'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
      'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
     'source_status_id': 1364217980201091075,
     'source_status_id_str': '1364217980201091075',
     'source_user_id': 1349149096909668363,
     'source_user_id_str': '1349149096909668363',
     'video_info': {'aspect_ratio': [1, 1],
      'duration_millis': 28987,
      'variants': [{'bitrate': 432000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1364217936395841537/vid/320x320/au6p1utPQJqa2p3-.mp4?tag=13'},
       {'bitrate': 1280000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1364217936395841537/vid/720x720/dIbDd7lpE8UGoP4Z.mp4?tag=13'},
       {'bitrate': 832000,
        'content_type': 'video/mp4',
        'url': 'https://video.twimg.com/amplify_video/1364217936395841537/vid/480x480/xU2oI6bZzmHl9bEG.mp4?tag=13'},
       {'content_type': 'application/x-mpegURL',
        'url': 'https://video.twimg.com/amplify_video/1364217936395841537/pl/Ijwy9aKWT4FapAjI.m3u8?tag=13'}]},
     'additional_media_info': {'title': 'President Biden Addresses The Nation On 500,000 Deaths',
      'description': '',
      'monetizable': False,
      'source_user': {'id': 1349149096909668363,
       'id_str': '1349149096909668363',
       'name': 'President Biden',
       'screen_name': 'POTUS',
       'location': '',
       'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
       'url': 'https://t.co/MzB1JWfbJ0',
       'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
           'expanded_url': 'http://WhiteHouse.gov',
           'display_url': 'WhiteHouse.gov',
           'indices': [0, 23]}]},
        'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
           'expanded_url': 'http://whitehouse.gov/privacy',
           'display_url': 'whitehouse.gov/privacy',
           'indices': [98, 121]}]}},
       'protected': False,
       'followers_count': 22004751,
       'friends_count': 12,
       'listed_count': 17915,
       'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
       'favourites_count': 0,
       'utc_offset': None,
       'time_zone': None,
       'geo_enabled': False,
       'verified': True,
       'statuses_count': 3117,
       'lang': None,
       'contributors_enabled': False,
       'is_translator': False,
       'is_translation_enabled': False,
       'profile_background_color': 'F5F8FA',
       'profile_background_image_url': None,
       'profile_background_image_url_https': None,
       'profile_background_tile': False,
       'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
       'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
       'profile_link_color': '1DA1F2',
       'profile_sidebar_border_color': 'C0DEED',
       'profile_sidebar_fill_color': 'DDEEF6',
       'profile_text_color': '333333',
       'profile_use_background_image': True,
       'has_extended_profile': True,
       'default_profile': True,
       'default_profile_image': False,
       'following': False,
       'follow_request_sent': False,
       'notifications': False,
       'translator_type': 'none',
       'withheld_in_countries': []}}}]},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Tue Feb 23 14:18:07 +0000 2021',
   'id': 1364217980201091075,
   'id_str': '1364217980201091075',
   'full_text': 'We will get through this, I promise you. https://t.co/dtmi4C9WsM',
   'truncated': False,
   'display_text_range': [0, 40],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [],
    'media': [{'id': 1364217936395841537,
      'id_str': '1364217936395841537',
      'indices': [41, 64],
      'media_url': 'http://pbs.twimg.com/media/Eu6tBO-WQAEFu0s.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Eu6tBO-WQAEFu0s.jpg',
      'url': 'https://t.co/dtmi4C9WsM',
      'display_url': 'pic.twitter.com/dtmi4C9WsM',
      'expanded_url': 'https://twitter.com/POTUS/status/1364217980201091075/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1364217936395841537,
      'id_str': '1364217936395841537',
      'indices': [41, 64],
      'media_url': 'http://pbs.twimg.com/media/Eu6tBO-WQAEFu0s.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Eu6tBO-WQAEFu0s.jpg',
      'url': 'https://t.co/dtmi4C9WsM',
      'display_url': 'pic.twitter.com/dtmi4C9WsM',
      'expanded_url': 'https://twitter.com/POTUS/status/1364217980201091075/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 1080, 'h': 1080, 'resize': 'fit'},
       'large': {'w': 1080, 'h': 1080, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 28987,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1364217936395841537/vid/320x320/au6p1utPQJqa2p3-.mp4?tag=13'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1364217936395841537/vid/720x720/dIbDd7lpE8UGoP4Z.mp4?tag=13'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1364217936395841537/vid/480x480/xU2oI6bZzmHl9bEG.mp4?tag=13'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1364217936395841537/pl/Ijwy9aKWT4FapAjI.m3u8?tag=13'}]},
      'additional_media_info': {'title': 'President Biden Addresses The Nation On 500,000 Deaths',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6435,
   'favorite_count': 54705,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6435,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'possibly_sensitive': False,
  'lang': 'en'},
 {'created_at': 'Tue Feb 23 00:53:47 +0000 2021',
  'id': 1364015563798958080,
  'id_str': '1364015563798958080',
  'full_text': 'RT @POTUS: 500,000 lives lost to COVID-19. It’s an unfathomable number, but each one represents a family that will never again be whole. To…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Feb 22 22:48:00 +0000 2021',
   'id': 1363983909495705603,
   'id_str': '1363983909495705603',
   'full_text': '500,000 lives lost to COVID-19. It’s an unfathomable number, but each one represents a family that will never again be whole. To those who have lost loved ones: I know no words can numb the pain, but I hope you find some solace in knowing the nation grieves with you.',
   'truncated': False,
   'display_text_range': [0, 267],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 13101,
   'favorite_count': 92726,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 13101,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 22 21:06:37 +0000 2021',
  'id': 1363958394772725762,
  'id_str': '1363958394772725762',
  'full_text': 'RT @POTUS: I know folks have a lot of questions about COVID-19 mutations, our vaccination progress, and much more. @CDCDirector Dr. Walensk…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]},
    {'screen_name': 'CDCDirector',
     'name': 'Rochelle Walensky, MD, MPH',
     'id': 426909329,
     'id_str': '426909329',
     'indices': [115, 127]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Feb 22 19:31:01 +0000 2021',
   'id': 1363934335984877583,
   'id_str': '1363934335984877583',
   'full_text': 'I know folks have a lot of questions about COVID-19 mutations, our vaccination progress, and much more. @CDCDirector Dr. Walensky sat down to provide answers. https://t.co/K0Rlkc4Ti2',
   'truncated': False,
   'display_text_range': [0, 158],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'CDCDirector',
      'name': 'Rochelle Walensky, MD, MPH',
      'id': 426909329,
      'id_str': '426909329',
      'indices': [104, 116]}],
    'urls': [],
    'media': [{'id': 1363934097442275328,
      'id_str': '1363934097442275328',
      'indices': [159, 182],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1363934097442275328/img/JwKGoBb2JJ2rfX09.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1363934097442275328/img/JwKGoBb2JJ2rfX09.jpg',
      'url': 'https://t.co/K0Rlkc4Ti2',
      'display_url': 'pic.twitter.com/K0Rlkc4Ti2',
      'expanded_url': 'https://twitter.com/POTUS/status/1363934335984877583/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1363934097442275328,
      'id_str': '1363934097442275328',
      'indices': [159, 182],
      'media_url': 'http://pbs.twimg.com/amplify_video_thumb/1363934097442275328/img/JwKGoBb2JJ2rfX09.jpg',
      'media_url_https': 'https://pbs.twimg.com/amplify_video_thumb/1363934097442275328/img/JwKGoBb2JJ2rfX09.jpg',
      'url': 'https://t.co/K0Rlkc4Ti2',
      'display_url': 'pic.twitter.com/K0Rlkc4Ti2',
      'expanded_url': 'https://twitter.com/POTUS/status/1363934335984877583/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'small': {'w': 680, 'h': 680, 'resize': 'fit'},
       'medium': {'w': 720, 'h': 720, 'resize': 'fit'},
       'large': {'w': 720, 'h': 720, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [1, 1],
       'duration_millis': 88922,
       'variants': [{'bitrate': 432000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1363934097442275328/vid/320x320/ZSA_GdnIRh6ewLj6.mp4?tag=13'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1363934097442275328/vid/480x480/I78SyI8mJcdQ1L4g.mp4?tag=13'},
        {'bitrate': 1280000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1363934097442275328/vid/720x720/NrWfAuCSMRv9UMtq.mp4?tag=13'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1363934097442275328/pl/ul8aB5MgV_83wwGH.m3u8?tag=13'}]},
      'additional_media_info': {'title': 'Dr. Walensky Answers Questions On COVID-19',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 2837,
   'favorite_count': 16011,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 2837,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Mon Feb 22 14:55:00 +0000 2021',
  'id': 1363864878059028487,
  'id_str': '1363864878059028487',
  'full_text': 'RT @POTUS: If there’s one message I want to cut through to everyone in this country, it’s this: The vaccines are safe.\n\nFor yourself, your…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Mon Feb 22 13:58:30 +0000 2021',
   'id': 1363850658475110401,
   'id_str': '1363850658475110401',
   'full_text': 'If there’s one message I want to cut through to everyone in this country, it’s this: The vaccines are safe.\n\nFor yourself, your family, your community, our country — take the vaccine when it’s your turn and available. That’s how we’ll beat this pandemic.',
   'truncated': False,
   'display_text_range': [0, 254],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 15870,
   'favorite_count': 123707,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 15870,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 21 21:42:02 +0000 2021',
  'id': 1363604921975791620,
  'id_str': '1363604921975791620',
  'full_text': 'RT @POTUS: Today would have been Congressman John Lewis’ 81st birthday. While my dear friend may no longer be with us, his life and legacy…',
  'truncated': False,
  'display_text_range': [0, 139],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Feb 21 21:05:00 +0000 2021',
   'id': 1363595601359831041,
   'id_str': '1363595601359831041',
   'full_text': 'Today would have been Congressman John Lewis’ 81st birthday. While my dear friend may no longer be with us, his life and legacy provide an eternal moral compass on which direction to march. May we carry on his mission in the fight for justice and equality for all.',
   'truncated': False,
   'display_text_range': [0, 264],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 13938,
   'favorite_count': 135971,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 13938,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sun Feb 21 16:31:40 +0000 2021',
  'id': 1363526815457886216,
  'id_str': '1363526815457886216',
  'full_text': 'RT @POTUS: Overcoming the COVID-19 pandemic needs to be our top priority as a nation. I joined members of my team to talk about our plan to…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="https://mobile.twitter.com" rel="nofollow">Twitter Web App</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sun Feb 21 15:43:42 +0000 2021',
   'id': 1363514744678809606,
   'id_str': '1363514744678809606',
   'full_text': 'Overcoming the COVID-19 pandemic needs to be our top priority as a nation. I joined members of my team to talk about our plan to get it done. https://t.co/LIiwFrwKRc',
   'truncated': False,
   'display_text_range': [0, 165],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/LIiwFrwKRc',
      'expanded_url': 'https://patch.com/district-columbia/washingtondc/my-plan-end-pandemic-president-joe-biden',
      'display_url': 'patch.com/district-colum…',
      'indices': [142, 165]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 4930,
   'favorite_count': 41174,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 4930,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 20 21:26:49 +0000 2021',
  'id': 1363238705897611268,
  'id_str': '1363238705897611268',
  'full_text': 'RT @POTUS: The federal government has sent generators, blankets, water, and other critical supplies to Texas, but local organizations on th…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Feb 20 20:17:00 +0000 2021',
   'id': 1363221133143769090,
   'id_str': '1363221133143769090',
   'full_text': 'The federal government has sent generators, blankets, water, and other critical supplies to Texas, but local organizations on the ground need help. Here’s how you can pitch in. https://t.co/gp6PaGe87G',
   'truncated': False,
   'display_text_range': [0, 200],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': [{'url': 'https://t.co/gp6PaGe87G',
      'expanded_url': 'https://www.statesman.com/story/news/2021/02/15/how-to-help-how-get-food-shelter-resources-during-texas-winter-storm/4486821001/',
      'display_url': 'statesman.com/story/news/202…',
      'indices': [177, 200]}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 8104,
   'favorite_count': 41842,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 8104,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Sat Feb 20 15:28:00 +0000 2021',
  'id': 1363148404503773190,
  'id_str': '1363148404503773190',
  'full_text': 'RT @POTUS: On Thursday, I joined the world and watched in awe as the Perseverance Rover touched down on the surface of Mars. It was a remar…',
  'truncated': False,
  'display_text_range': [0, 140],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Sat Feb 20 15:17:35 +0000 2021',
   'id': 1363145783353241601,
   'id_str': '1363145783353241601',
   'full_text': 'On Thursday, I joined the world and watched in awe as the Perseverance Rover touched down on the surface of Mars. It was a remarkable feat — one made possible by the hard work and ingenuity of the team at @NASA.\n\nI called to congratulate them on their historic landing. https://t.co/0Qjs2MDk4J',
   'truncated': False,
   'display_text_range': [0, 269],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [{'screen_name': 'NASA',
      'name': 'NASA',
      'id': 11348282,
      'id_str': '11348282',
      'indices': [205, 210]}],
    'urls': [],
    'media': [{'id': 1363145645423476739,
      'id_str': '1363145645423476739',
      'indices': [270, 293],
      'media_url': 'http://pbs.twimg.com/media/Eurd3SPXUAQ03ke.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Eurd3SPXUAQ03ke.jpg',
      'url': 'https://t.co/0Qjs2MDk4J',
      'display_url': 'pic.twitter.com/0Qjs2MDk4J',
      'expanded_url': 'https://twitter.com/POTUS/status/1363145783353241601/video/1',
      'type': 'photo',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 720, 'h': 405, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 720, 'h': 405, 'resize': 'fit'}}}]},
   'extended_entities': {'media': [{'id': 1363145645423476739,
      'id_str': '1363145645423476739',
      'indices': [270, 293],
      'media_url': 'http://pbs.twimg.com/media/Eurd3SPXUAQ03ke.jpg',
      'media_url_https': 'https://pbs.twimg.com/media/Eurd3SPXUAQ03ke.jpg',
      'url': 'https://t.co/0Qjs2MDk4J',
      'display_url': 'pic.twitter.com/0Qjs2MDk4J',
      'expanded_url': 'https://twitter.com/POTUS/status/1363145783353241601/video/1',
      'type': 'video',
      'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
       'medium': {'w': 720, 'h': 405, 'resize': 'fit'},
       'small': {'w': 680, 'h': 383, 'resize': 'fit'},
       'large': {'w': 720, 'h': 405, 'resize': 'fit'}},
      'video_info': {'aspect_ratio': [16, 9],
       'duration_millis': 83750,
       'variants': [{'bitrate': 2176000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1363145645423476739/vid/1280x720/ok2u38B0X3UWEWSD.mp4?tag=13'},
        {'bitrate': 832000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1363145645423476739/vid/640x360/ijWoZVuV8DJp4qYY.mp4?tag=13'},
        {'content_type': 'application/x-mpegURL',
         'url': 'https://video.twimg.com/amplify_video/1363145645423476739/pl/ZzpO9yMFXFjWRjmT.m3u8?tag=13'},
        {'bitrate': 288000,
         'content_type': 'video/mp4',
         'url': 'https://video.twimg.com/amplify_video/1363145645423476739/vid/480x270/90tdWPopKnLmr1tU.mp4?tag=13'}]},
      'additional_media_info': {'title': 'A Weekly Conversation: President Biden Calls NASA',
       'description': '',
       'monetizable': False}}]},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 6507,
   'favorite_count': 64949,
   'favorited': False,
   'retweeted': False,
   'possibly_sensitive': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 6507,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 {'created_at': 'Fri Feb 19 18:40:55 +0000 2021',
  'id': 1362834564356440066,
  'id_str': '1362834564356440066',
  'full_text': 'RT @POTUS: Today, America is officially back in the Paris Climate Agreement. Let’s get to work.',
  'truncated': False,
  'display_text_range': [0, 95],
  'entities': {'hashtags': [],
   'symbols': [],
   'user_mentions': [{'screen_name': 'POTUS',
     'name': 'President Biden',
     'id': 1349149096909668363,
     'id_str': '1349149096909668363',
     'indices': [3, 9]}],
   'urls': []},
  'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
  'in_reply_to_status_id': None,
  'in_reply_to_status_id_str': None,
  'in_reply_to_user_id': None,
  'in_reply_to_user_id_str': None,
  'in_reply_to_screen_name': None,
  'user': {'id': 939091,
   'id_str': '939091',
   'name': 'Joe Biden',
   'screen_name': 'JoeBiden',
   'location': 'Washington, DC',
   'description': 'Husband to @DrBiden, proud father and grandfather. Ready to build back better for all Americans. Official account is @POTUS.',
   'url': 'https://t.co/UClrPuJpyZ',
   'entities': {'url': {'urls': [{'url': 'https://t.co/UClrPuJpyZ',
       'expanded_url': 'http://joebiden.com',
       'display_url': 'joebiden.com',
       'indices': [0, 23]}]},
    'description': {'urls': []}},
   'protected': False,
   'followers_count': 34155528,
   'friends_count': 48,
   'listed_count': 39074,
   'created_at': 'Sun Mar 11 17:51:24 +0000 2007',
   'favourites_count': 20,
   'utc_offset': None,
   'time_zone': None,
   'geo_enabled': False,
   'verified': True,
   'statuses_count': 8196,
   'lang': None,
   'contributors_enabled': False,
   'is_translator': False,
   'is_translation_enabled': False,
   'profile_background_color': '565959',
   'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
   'profile_background_tile': True,
   'profile_image_url': 'http://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_normal.jpg',
   'profile_banner_url': 'https://pbs.twimg.com/profile_banners/939091/1626295479',
   'profile_link_color': '233F94',
   'profile_sidebar_border_color': 'FFFFFF',
   'profile_sidebar_fill_color': 'EBEBFF',
   'profile_text_color': '323232',
   'profile_use_background_image': True,
   'has_extended_profile': False,
   'default_profile': False,
   'default_profile_image': False,
   'following': False,
   'follow_request_sent': False,
   'notifications': False,
   'translator_type': 'none',
   'withheld_in_countries': []},
  'geo': None,
  'coordinates': None,
  'place': None,
  'contributors': None,
  'retweeted_status': {'created_at': 'Fri Feb 19 18:30:01 +0000 2021',
   'id': 1362831822221168641,
   'id_str': '1362831822221168641',
   'full_text': 'Today, America is officially back in the Paris Climate Agreement. Let’s get to work.',
   'truncated': False,
   'display_text_range': [0, 84],
   'entities': {'hashtags': [],
    'symbols': [],
    'user_mentions': [],
    'urls': []},
   'source': '<a href="https://www.sprinklr.com" rel="nofollow">The White House</a>',
   'in_reply_to_status_id': None,
   'in_reply_to_status_id_str': None,
   'in_reply_to_user_id': None,
   'in_reply_to_user_id_str': None,
   'in_reply_to_screen_name': None,
   'user': {'id': 1349149096909668363,
    'id_str': '1349149096909668363',
    'name': 'President Biden',
    'screen_name': 'POTUS',
    'location': '',
    'description': '46th President of the United States, husband to @FLOTUS, proud dad & pop. Tweets may be archived: https://t.co/HDhBZBkKpU',
    'url': 'https://t.co/MzB1JWfbJ0',
    'entities': {'url': {'urls': [{'url': 'https://t.co/MzB1JWfbJ0',
        'expanded_url': 'http://WhiteHouse.gov',
        'display_url': 'WhiteHouse.gov',
        'indices': [0, 23]}]},
     'description': {'urls': [{'url': 'https://t.co/HDhBZBkKpU',
        'expanded_url': 'http://whitehouse.gov/privacy',
        'display_url': 'whitehouse.gov/privacy',
        'indices': [98, 121]}]}},
    'protected': False,
    'followers_count': 22004751,
    'friends_count': 12,
    'listed_count': 17915,
    'created_at': 'Wed Jan 13 00:37:08 +0000 2021',
    'favourites_count': 0,
    'utc_offset': None,
    'time_zone': None,
    'geo_enabled': False,
    'verified': True,
    'statuses_count': 3117,
    'lang': None,
    'contributors_enabled': False,
    'is_translator': False,
    'is_translation_enabled': False,
    'profile_background_color': 'F5F8FA',
    'profile_background_image_url': None,
    'profile_background_image_url_https': None,
    'profile_background_tile': False,
    'profile_image_url': 'http://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_image_url_https': 'https://pbs.twimg.com/profile_images/1380530524779859970/TfwVAbyX_normal.jpg',
    'profile_banner_url': 'https://pbs.twimg.com/profile_banners/1349149096909668363/1651425094',
    'profile_link_color': '1DA1F2',
    'profile_sidebar_border_color': 'C0DEED',
    'profile_sidebar_fill_color': 'DDEEF6',
    'profile_text_color': '333333',
    'profile_use_background_image': True,
    'has_extended_profile': True,
    'default_profile': True,
    'default_profile_image': False,
    'following': False,
    'follow_request_sent': False,
    'notifications': False,
    'translator_type': 'none',
    'withheld_in_countries': []},
   'geo': None,
   'coordinates': None,
   'place': None,
   'contributors': None,
   'is_quote_status': False,
   'retweet_count': 33089,
   'favorite_count': 390402,
   'favorited': False,
   'retweeted': False,
   'lang': 'en'},
  'is_quote_status': False,
  'retweet_count': 33089,
  'favorite_count': 0,
  'favorited': False,
  'retweeted': False,
  'lang': 'en'},
 ...]
In [5]:
#get the follower.

7.ETL --> T¶

Obviously, the data is not readable. 
So... we need to translation
Usually, we use pandas to translation, of course, cleansing data is part of that.
Translation consists of two parts, one is data cleaning, the other is keyword filtering.
In [8]:
import pandas as pd

# define two empty list, columns sava the table title, value save the data value. 

value = []
def data_key():
    columns = []
    t_data_0 = timeline(user)
    for key,value in t_data_0[0].items():
        columns.append(key)
    return columns


print(value)
[]
In [6]:
# usually two-dimension can easy to read.
columns = data_key()
print(columns)
df = pd.DataFrame(timeline(user),columns=columns)#.set_index('created_at')
print(df.head())
['created_at', 'id', 'id_str', 'full_text', 'truncated', 'display_text_range', 'entities', 'source', 'in_reply_to_status_id', 'in_reply_to_status_id_str', 'in_reply_to_user_id', 'in_reply_to_user_id_str', 'in_reply_to_screen_name', 'user', 'geo', 'coordinates', 'place', 'contributors', 'retweeted_status', 'is_quote_status', 'retweet_count', 'favorite_count', 'favorited', 'retweeted', 'lang']
                       created_at                   id               id_str  \
0  Sun May 08 18:01:33 +0000 2022  1523362483636908032  1523362483636908032   
1  Sun May 08 15:43:01 +0000 2022  1523327622779969541  1523327622779969541   
2  Sat May 07 23:39:00 +0000 2022  1523085018805202944  1523085018805202944   
3  Sat May 07 19:00:04 +0000 2022  1523014824157847552  1523014824157847552   
4  Fri May 06 23:09:00 +0000 2022  1522715081213104133  1522715081213104133   

                                           full_text  truncated  \
0  RT @POTUS: Happy Mother’s Day, @FLOTUS. You’re...      False   
1  My mom believed the greatest virtue of all was...      False   
2  When I took office, there were around 20 milli...      False   
3  There have been only 3 months in the last 50 y...      False   
4  The Republican plan led by Senator Rick Scott ...      False   

  display_text_range                                           entities  \
0           [0, 140]  {'hashtags': [], 'symbols': [], 'user_mentions...   
1           [0, 209]  {'hashtags': [], 'symbols': [], 'user_mentions...   
2           [0, 236]  {'hashtags': [], 'symbols': [], 'user_mentions...   
3           [0, 267]  {'hashtags': [], 'symbols': [], 'user_mentions...   
4           [0, 229]  {'hashtags': [], 'symbols': [], 'user_mentions...   

                                              source  in_reply_to_status_id  \
0  <a href="http://twitter.com/download/iphone" r...                    NaN   
1  <a href="https://sproutsocial.com" rel="nofoll...                    NaN   
2  <a href="https://sproutsocial.com" rel="nofoll...                    NaN   
3  <a href="https://sproutsocial.com" rel="nofoll...                    NaN   
4  <a href="https://sproutsocial.com" rel="nofoll...                    NaN   

  in_reply_to_status_id_str  ...  coordinates place contributors  \
0                      None  ...         None  None         None   
1                      None  ...         None  None         None   
2                      None  ...         None  None         None   
3                      None  ...         None  None         None   
4                      None  ...         None  None         None   

                                    retweeted_status is_quote_status  \
0  {'created_at': 'Sun May 08 18:00:30 +0000 2022...           False   
1                                                NaN           False   
2                                                NaN           False   
3                                                NaN           False   
4                                                NaN           False   

  retweet_count favorite_count favorited retweeted  lang  
0          5302              0     False     False    en  
1          1795          12236     False     False    en  
2          4023          25243     False     False    en  
3          3005          16364     False     False    en  
4          3636          16372     False     False    en  

[5 rows x 25 columns]
In [9]:
#自動檢索刪除,發現有整列 null,無可讀性,清除

df = df.dropna(axis=1,how='all')
print(df.head())
print(df.shape)
                       created_at                   id               id_str  \
0  Sun May 08 18:01:33 +0000 2022  1523362483636908032  1523362483636908032   
1  Sun May 08 15:43:01 +0000 2022  1523327622779969541  1523327622779969541   
2  Sat May 07 23:39:00 +0000 2022  1523085018805202944  1523085018805202944   
3  Sat May 07 19:00:04 +0000 2022  1523014824157847552  1523014824157847552   
4  Fri May 06 23:09:00 +0000 2022  1522715081213104133  1522715081213104133   

                                           full_text  truncated  \
0  RT @POTUS: Happy Mother’s Day, @FLOTUS. You’re...      False   
1  My mom believed the greatest virtue of all was...      False   
2  When I took office, there were around 20 milli...      False   
3  There have been only 3 months in the last 50 y...      False   
4  The Republican plan led by Senator Rick Scott ...      False   

  display_text_range                                           entities  \
0           [0, 140]  {'hashtags': [], 'symbols': [], 'user_mentions...   
1           [0, 209]  {'hashtags': [], 'symbols': [], 'user_mentions...   
2           [0, 236]  {'hashtags': [], 'symbols': [], 'user_mentions...   
3           [0, 267]  {'hashtags': [], 'symbols': [], 'user_mentions...   
4           [0, 229]  {'hashtags': [], 'symbols': [], 'user_mentions...   

                                              source  in_reply_to_status_id  \
0  <a href="http://twitter.com/download/iphone" r...                    NaN   
1  <a href="https://sproutsocial.com" rel="nofoll...                    NaN   
2  <a href="https://sproutsocial.com" rel="nofoll...                    NaN   
3  <a href="https://sproutsocial.com" rel="nofoll...                    NaN   
4  <a href="https://sproutsocial.com" rel="nofoll...                    NaN   

  in_reply_to_status_id_str  ...  in_reply_to_user_id_str  \
0                      None  ...                     None   
1                      None  ...                     None   
2                      None  ...                     None   
3                      None  ...                     None   
4                      None  ...                     None   

  in_reply_to_screen_name                                               user  \
0                    None  {'id': 939091, 'id_str': '939091', 'name': 'Jo...   
1                    None  {'id': 939091, 'id_str': '939091', 'name': 'Jo...   
2                    None  {'id': 939091, 'id_str': '939091', 'name': 'Jo...   
3                    None  {'id': 939091, 'id_str': '939091', 'name': 'Jo...   
4                    None  {'id': 939091, 'id_str': '939091', 'name': 'Jo...   

                                    retweeted_status is_quote_status  \
0  {'created_at': 'Sun May 08 18:00:30 +0000 2022...           False   
1                                                NaN           False   
2                                                NaN           False   
3                                                NaN           False   
4                                                NaN           False   

   retweet_count  favorite_count  favorited  retweeted  lang  
0           5302               0      False      False    en  
1           1795           12236      False      False    en  
2           4023           25243      False      False    en  
3           3005           16364      False      False    en  
4           3636           16372      False      False    en  

[5 rows x 21 columns]
(2018, 21)
In [10]:
# 手動檢索刪除 發現有大量False,id有兩列,無可讀性或冗余, 清除
# 經過檢查,侷限使用usertime() 如果更替為其他檢索工具,需要再校對代碼

#missing_values 是經過手動檢索需要刪除都列類別。(為多列刪除)
missing_values = ['id_str','truncated','is_quote_status','favorited','retweeted']

#指定的單列刪除
#del df['id_str']

#執行對missing_values 列表的指定刪除列
df1 = df.drop(missing_values,axis = 1, inplace = False)

#對刪除列後結果進行輸出
#print(df)
                                                                                    #print(df.iloc[:,6])

#df1 為全局定義,保留可讀性數據
#df2 為全局定義,保留指定數據
#經過過濾後的結果,只保留了以下資料: df2
df2 =df1.drop(['display_text_range','entities','source','user','lang'],axis = 1, inplace = False)
'''
    - 創建推文的時間 created_at
    - 推文所屬的識別號 id
    - 推文的全文內容 full_text 
    - 推文的讚好量 retweet_count
    - 推文的轉發量 favorite_count
    '''
print(df2.head())
                       created_at                   id  \
0  Sun May 08 18:01:33 +0000 2022  1523362483636908032   
1  Sun May 08 15:43:01 +0000 2022  1523327622779969541   
2  Sat May 07 23:39:00 +0000 2022  1523085018805202944   
3  Sat May 07 19:00:04 +0000 2022  1523014824157847552   
4  Fri May 06 23:09:00 +0000 2022  1522715081213104133   

                                           full_text  in_reply_to_status_id  \
0  RT @POTUS: Happy Mother’s Day, @FLOTUS. You’re...                    NaN   
1  My mom believed the greatest virtue of all was...                    NaN   
2  When I took office, there were around 20 milli...                    NaN   
3  There have been only 3 months in the last 50 y...                    NaN   
4  The Republican plan led by Senator Rick Scott ...                    NaN   

  in_reply_to_status_id_str  in_reply_to_user_id in_reply_to_user_id_str  \
0                      None                  NaN                    None   
1                      None                  NaN                    None   
2                      None                  NaN                    None   
3                      None                  NaN                    None   
4                      None                  NaN                    None   

  in_reply_to_screen_name                                   retweeted_status  \
0                    None  {'created_at': 'Sun May 08 18:00:30 +0000 2022...   
1                    None                                                NaN   
2                    None                                                NaN   
3                    None                                                NaN   
4                    None                                                NaN   

   retweet_count  favorite_count  
0           5302               0  
1           1795           12236  
2           4023           25243  
3           3005           16364  
4           3636           16372  
In [11]:
#df3 將保存以關鍵字過濾的有關信息
#print(df)


df3 = df['full_text'].str.contains('COVID|COVID-19|COVID 19|\
                                    covid|covid-19|covid 19|\
                                        Vaccination|VACCINATION|\
                                            coronavirus', case = False)
print(df3)
'''for i in df3.index:
    print(df3.loc[i])'''
0       False
1       False
2       False
3        True
4       False
        ...  
2013    False
2014    False
2015    False
2016    False
2017    False
Name: full_text, Length: 2018, dtype: bool
Out[11]:
'for i in df3.index:\n    print(df3.loc[i])'

7.ETL --> L¶

In [12]:
import sqlalchemy
#設計數據庫保存數據
# call the local Datebase
db_location = '/Users/rockylee/Downloads/assessment_SQLite_3/pj_db_twitter.db'
def sql_command(q):
    engine = sqlalchemy.create_engine("sqlite:///{}".format(db_location))
    df2 = pd.read_sql(q , engine)
    print(df2)
    print('\n')
'''while(True):
    table_name = str(input('叫你系度打Command: '))
    sql_command(table_name)'''
Out[12]:
"while(True):\n    table_name = str(input('叫你系度打Command: '))\n    sql_command(table_name)"
In [ ]:
import time
#定義主資料表關機字 data lake~~
main_user = 'main_' + str(user)

#創建主數據表
create_df = '''CREATE TABLE IF NOT EXISTS \
"{}" (created_at datetime,\
id int,\
twitter text,\
like_count int,\
retweet_count int,\
fittering bool);'''.format(main_user)
#執行表格創建
try:
    sql_command(create_df)
except:
    print('Create Table {} is successful.'.format(main_user))

#插入主數據表數據
'''.replace('\'',' ')
maybe values[2] need to add this command
'''
count_successful = 0
for i in df2.index:
    time.sleep(1)
    sql_command_insert = """ insert or ignore into "{}" values ('{}','{}','{}','{}','{}','{}');"""\
    .format(main_user,\
            str(df2.loc[i].values[0]),\
            str(df2.loc[i].values[1]),\
            str(df2.loc[i].values[2]),\
            str(df2.loc[i].values[3]),\
            str(df2.loc[i].values[4]),\
            df3.loc[i])
    count_successful += 1
    #sql_command(sql_command_insert)
    try:
        sql_command(sql_command_insert)
    except:
        print('successful adding: ' + str(count_successful) + ' record.')
In [ ]:
 
In [ ]:
 
In [ ]: